summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/testsuite.yaml19
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 @@
1name: Test suite
2on:
3 pull_request:
4 push:
5 schedule:
6 - cron: '0 16 * * 5'
7
8jobs:
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