misc: fix grammatical errors and phrasing of log messages #610
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@v4 | |
- name: dependencies | |
run: brew install check cmake help2man libfido2 mandoc pkg-config automake | |
- name: build | |
env: | |
CC: ${{ matrix.cc }} | |
run: ./build-aux/ci/build-osx.sh |