version: bump to 1.19.1 #850
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: MacOS (build-&-test) | |
on: | |
push: | |
branches: | |
- master | |
- devel | |
pull_request: | |
branches: | |
- master | |
- devel | |
jobs: | |
setup: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Building MacOS dependencies | |
run: brew install lcov gcovr | |
- name: Compile the static and shared libraries | |
run: make release | |
- name: Test the library | |
run: make test |