Skip to content

Commit

Permalink
ci: fix locked builds
Browse files Browse the repository at this point in the history
  • Loading branch information
sonro committed Jul 13, 2024
1 parent f388aff commit b5be490
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
target: ${{ matrix.on.target }}

- name: Build tests
run: cargo test --no-run --locked --all-features
run: cargo test --no-run --all-features

- name: Run tests
run: cargo test --locked --all-features
run: cargo test --all-features

docs:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov

- name: llvm-cov
run: cargo llvm-cov --locked --all-features --lcov --output-path lcov.info
run: cargo llvm-cov --all-features --lcov --output-path lcov.info

- name: Archive code coverage results
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit b5be490

Please sign in to comment.