Skip to content

Commit

Permalink
Add the dependency for MacOS too
Browse files Browse the repository at this point in the history
  • Loading branch information
GjjvdBurg committed Oct 1, 2023
1 parent fcadff9 commit d352bf7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Expand Up @@ -24,11 +24,17 @@ jobs:
with:
python-version: ${{ matrix.py }}

- name: Install libgirepository
- name: Install PyGObject dependencies (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install libgirepository1.0-dev
- name: Install PyGObject dependencies (Ubuntu)
if: matrix.os == 'macos-latest'
run: |
brew update
brew install pygobject3 gtk4
- name: Checkout
uses: actions/checkout@v2

Expand Down

0 comments on commit d352bf7

Please sign in to comment.