blob: 115b14574c65388c35a452a3204fae2721bf19c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|