From 98288269ad160a96393ceadebceb58d3e773aea9 Mon Sep 17 00:00:00 2001 From: augustin64 <67148092+augustin64@users.noreply.github.com> Date: Sun, 10 Apr 2022 21:35:29 +0200 Subject: [PATCH] Create tests.yml --- .github/workflows/tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..1df5ea7 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,17 @@ +name: C tests + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: run tests + run: ./make.sh test run