From ae81c6e3b0d082a31d462cdfc5f62c6c3644a0a1 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 15 Sep 2024 12:46:37 -0400 Subject: [PATCH] Add CI runs of demo checks. --- .github/workflows/ci.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..d050501 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,35 @@ +name: Continuous Integration + +on: + push: + branches: + - "trunk" + tags: + - "*" + paths-ignore: + - "**.md" + pull_request: + branches: + - "trunk" + paths-ignore: + - "**.md" + workflow_dispatch: + +jobs: + build: + name: Statcheck test + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + with: + submodules: true + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install make chocolate-doom python3 python3-yaml + + - name: Run checks + run: | + make check