name: Test suite on: pull_request: push: schedule: - cron: '0 16 * * 5' jobs: gcc: 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 gcc | grep -zqv FAIL clang: 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 clang | grep -zqv FAIL