Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
28Smiles committed Aug 26, 2023
1 parent 54e9579 commit 23c2a9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true
- name: Build
run: cargo build --verbose --no-default-features ${{ matrix.features == '' && '' || format('--features {0}', matrix.features) }}
run: cargo build --verbose --no-default-features ${{ matrix.features == '' && ' ' || format('--features {0}', matrix.features) }}
- name: Run tests
run: cargo test --verbose --no-default-features ${{ matrix.features == '' && '' || format('--features {0}', matrix.features) }}
run: cargo test --verbose --no-default-features ${{ matrix.features == '' && ' ' || format('--features {0}', matrix.features) }}

0 comments on commit 23c2a9f

Please sign in to comment.