Skip to content

Commit

Permalink
Fix pipeline syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhickman committed Oct 17, 2024
1 parent 55c3e14 commit 89a4543
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
toolchain: ${{ matrix.rust_version }}

- run: cargo update
if: ${{ matrix.rust == 'stable' || matrix.rust == 'beta' }}
if: ${{ matrix.rust_version == 'stable' || matrix.rust_version == 'beta' }}

- name: cargo build
uses: actions-rs/cargo@v1
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:
with:
command: check
args: --features io_safety
if: ${{ matrix.rust == 'stable' || matrix.rust == 'beta' }}
if: ${{ matrix.rust_version == 'stable' || matrix.rust_version == 'beta' }}

- name: cargo check --features tokio
uses: actions-rs/cargo@v1
with:
command: check
args: --features tokio
if: ${{ matrix.rust == 'stable' || matrix.rust == 'beta' }}
if: ${{ matrix.rust_version == 'stable' || matrix.rust_version == 'beta' }}

0 comments on commit 89a4543

Please sign in to comment.