exceptions doc #652
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build macos | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
macos-build: | |
strategy: | |
matrix: | |
os: [ macos-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Update submodules | |
run: 'git submodule update --init --recursive' | |
- name: Build | |
run: 'make; make describe' | |
- name: Regression tests | |
run: 'make describe check' |