Skip to content

Commit

Permalink
.github: Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
simnalamburt committed Sep 22, 2024
1 parent 26c5a2d commit ab51a5c
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ jobs:
matrix:
glium: ["", "glium-support"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo build --features '${{ matrix.glium }}'
- run: cargo test --features '${{ matrix.glium }}'
Expand All @@ -22,7 +25,10 @@ jobs:
project: [sampleapp, sampleapp-vulkano]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo build -p '${{ matrix.project }}'
- run: cargo test -p '${{ matrix.project }}'
Expand All @@ -33,7 +39,10 @@ jobs:
name: Test sample app on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo build -p sampleapp
- run: cargo test -p sampleapp
Expand Down

0 comments on commit ab51a5c

Please sign in to comment.