Skip to content

Fix the coverage on github pages #61

Fix the coverage on github pages

Fix the coverage on github pages #61

Workflow file for this run

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 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 clang | grep -zqv FAIL