Skip to content

Commit

Permalink
CI: more general OS condition
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston committed Nov 14, 2024
1 parent 6f916d9 commit 8909b8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install packages via Brew if macOS
if: matrix.os == 'macos-latest'
if: runner.os == 'macOS'
run: |
brew install graphviz
brew install flex
brew install bison
- name: Install APT packages if Ubuntu
if: matrix.os == 'ubuntu-22.04'
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install \
Expand Down

0 comments on commit 8909b8b

Please sign in to comment.