From 4f1380a48da7cb0375810f70e68ca6282486dec1 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sat, 18 Mar 2023 13:29:22 +0100 Subject: Add a basic testsuite --- .github/workflows/testsuite.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/testsuite.yaml (limited to '.github') diff --git a/.github/workflows/testsuite.yaml b/.github/workflows/testsuite.yaml new file mode 100644 index 0000000..115b145 --- /dev/null +++ b/.github/workflows/testsuite.yaml @@ -0,0 +1,19 @@ +name: Test suite +on: + pull_request: + push: + schedule: + - cron: '0 16 * * 5' + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - name: Checking out the code + uses: actions/checkout@v3 + - name: Downloading musl-based toolchain + run: wget https://musl.cc/x86_64-linux-musl-native.tgz + - name: Extracting musl-based toolchain + run: tar xzf ./x86_64-linux-musl-native.tgz + - name: Running the testsuite + run: make -C tests | grep -zqv FAIL -- cgit v1.3