Skip to content

Commit ab65320

Browse files
authored
Fix tests on linux?
1 parent b679229 commit ab65320

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,21 @@ jobs:
2727
- uses: actions/checkout@v4
2828
- name: Run tests
2929
working-directory: src-tauri
30-
run: sudo apt-get install -y libgtk-3-dev && \
31-
cargo test --verbose
30+
run: |
31+
sudo apt-get update
32+
sudo apt-get install -y libgtk-3-dev
33+
cargo test --verbose
3234
3335
linux_arm64:
3436
runs-on: ubuntu-24.04-arm
3537
steps:
3638
- uses: actions/checkout@v4
3739
- name: Run tests
3840
working-directory: src-tauri
39-
run: sudo apt-get install -y libgtk-3-dev && \
40-
cargo test --verbose
41+
run: |
42+
sudo apt-get update
43+
sudo apt-get install -y libgtk-3-dev
44+
cargo test --verbose
4145
4246
macOS_intel:
4347
runs-on: macos-13

0 commit comments

Comments
 (0)