From a72cff909f23dd88ddfb880a80e7db5acc9d3ea6 Mon Sep 17 00:00:00 2001 From: Landon Curt Noll Date: Thu, 4 Jul 2024 18:29:59 -0700 Subject: [PATCH] test for initial make test workflow --- .github/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000000..ccbcd9c064 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: C CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: make test + run: make test