From 9bf84d44b518a4a81e998c9d0c39abc1ea3255aa Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Sat, 6 Apr 2024 13:02:31 +0200 Subject: [PATCH] Add build and test github actions workflow --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..ab8a9c4 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Build and test + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build devcontainer image + uses: devcontainers/ci@v0.3 + with: + runCmd: devenv test \ No newline at end of file