We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 311548e commit 9fbabb4Copy full SHA for 9fbabb4
.github/workflows/ci.yml
@@ -2,12 +2,14 @@ on: [push, pull_request]
2
3
jobs:
4
test:
5
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
6
strategy:
7
matrix:
8
glium: ["", "glium-support"]
9
steps:
10
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
11
+ - uses: dtolnay/rust-toolchain@stable
12
+ - uses: Swatinem/rust-cache@v2
13
- run: cargo build --features '${{ matrix.glium }}'
14
- run: cargo test --features '${{ matrix.glium }}'
15
- run: cargo clippy --features '${{ matrix.glium }}' --no-deps -- -D warnings
0 commit comments