Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Fogapod committed Feb 24, 2024
1 parent cf3717d commit 02fd6e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
toolchain: [stable, beta]
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo fmt --check
- run: cargo clippy -- -D warnings

Expand All @@ -39,7 +40,8 @@ jobs:
toolchain: [stable, beta]
steps:
- uses: actions/checkout@v5
- uses: dtolnay/rust-toolchain@${{ matrix.toolchain }}
with:
toolchain: ${{ matrix.toolchain }}
- uses: Swatinem/rust-cache@v2
- run: cargo test --all-features

Expand Down

0 comments on commit 02fd6e0

Please sign in to comment.