Skip to content

Add github actions file #5

Add github actions file

Add github actions file #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: setup CC
run: export CC=clang
if: ${{ matrix.os }} == 'macos-latest'
- name: run tests
run: make test