Skip to content

Commit

Permalink
Dedup
Browse files Browse the repository at this point in the history
  • Loading branch information
rikhuijzer committed Sep 23, 2024
1 parent c77ce58 commit 2d2878c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
pull_request:
workflow_dispatch:

env:
RUST_TOOLCHAIN: '1.80'

jobs:
test:
runs-on: ubuntu-22.04
Expand All @@ -19,7 +22,7 @@ jobs:

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: '1.80'
toolchain: ${{ env.RUST_TOOLCHAIN }}

# Compile, but don't run.
- run: cargo test --no-run
Expand All @@ -35,6 +38,6 @@ jobs:

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: '1.80'
toolchain: ${{ env.RUST_TOOLCHAIN }}

- run: cargo fmt --all -- --check

0 comments on commit 2d2878c

Please sign in to comment.