We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40a1de2 commit 38374f6Copy full SHA for 38374f6
.github/workflows/ci.yml
@@ -9,6 +9,14 @@ jobs:
9
name: Run Tests
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v6
13
- - run: rustup update stable && rustup default stable
14
- - run: cargo test --verbose
+ - name: checkout
+ uses: actions/checkout@v6
+ - name: rust-toolchain
15
+ uses: actions-rs/toolchain@v1.0.6
16
+ with:
17
+ toolchain: stable
18
+ - name: install linux deps
19
+ run: >
20
+ sudo apt-get update
21
+ sudo apt-get install --no-install-recommends libwayland-dev libxkbcommon-dev libx264-164 libx264-dev
22
+ - run: cargo test
0 commit comments