README: drop quotes #582
Workflow file for this run
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ macos-11, macos-12, macos-13 ] | |
cc: [ clang ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: dependencies | |
run: brew install check cmake help2man mandoc [email protected] pkg-config automake | |
- name: build | |
env: | |
CC: ${{ matrix.cc }} | |
run: ./build-aux/ci/build-osx.sh |