ci: Install libgtk-3-dev

This commit is contained in:
Luke Street 2022-09-08 17:33:16 -04:00
parent cb3c6062c7
commit 86d6432982
1 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,10 @@ jobs:
env:
RUSTFLAGS: -D warnings
steps:
- name: Install dependencies
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt install libgtk-3-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
@ -39,6 +43,10 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
- name: Install dependencies
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt install libgtk-3-dev
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with: