csgrep --file-glob: expand glob patterns #250
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 CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
macos: | |
name: macOS ${{ matrix.version }} (${{ matrix.compiler }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
compiler: [clang++] | |
version: [latest] | |
runs-on: macos-${{ matrix.version }} | |
env: | |
CXX: ${{ matrix.compiler }} | |
CXXFLAGS: -Werror | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
# workaround for https://github.com/actions/setup-python/issues/577 | |
for pkg in $(brew list | grep '^python@'); do | |
brew unlink "$pkg" | |
brew link --overwrite "$pkg" | |
done | |
brew update | |
brew install boost boost-python3 help2man | |
- name: Build and check | |
run: make distcheck |