diff options
| author | jvoisin | 2023-03-18 13:29:22 +0100 |
|---|---|---|
| committer | jvoisin | 2023-04-13 23:49:02 +0200 |
| commit | 4f1380a48da7cb0375810f70e68ca6282486dec1 (patch) | |
| tree | 2f98c995017e7f52b30b71ca35990f036f56cc19 /.github/workflows | |
| parent | 3e6704d0be707487d7a9dccfdc75203c7261e11b (diff) | |
Add a basic testsuite
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/testsuite.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
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 @@ | |||
| 1 | name: Test suite | ||
| 2 | on: | ||
| 3 | pull_request: | ||
| 4 | push: | ||
| 5 | schedule: | ||
| 6 | - cron: '0 16 * * 5' | ||
| 7 | |||
| 8 | jobs: | ||
| 9 | ci: | ||
| 10 | runs-on: ubuntu-latest | ||
| 11 | steps: | ||
| 12 | - name: Checking out the code | ||
| 13 | uses: actions/checkout@v3 | ||
| 14 | - name: Downloading musl-based toolchain | ||
| 15 | run: wget https://musl.cc/x86_64-linux-musl-native.tgz | ||
| 16 | - name: Extracting musl-based toolchain | ||
| 17 | run: tar xzf ./x86_64-linux-musl-native.tgz | ||
| 18 | - name: Running the testsuite | ||
| 19 | run: make -C tests | grep -zqv FAIL | ||
