Skip to content

chore: added clib.json #31

chore: added clib.json

chore: added clib.json #31

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pull:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler:
- gcc
- clang
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Run with the compiler ${{ matrix.compiler }}
run: |
sudo apt-get install -y $compiler
CC=$compiler make test
env:
compiler: ${{ matrix.compiler }}