Skip to content

Commit

Permalink
ci: fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Aug 5, 2024
1 parent 6669e21 commit 66c1d16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
# NB: we have to use either std or alloc here
- run: cargo check --no-default-features --feature std
- run: cargo check --no-default-features --feature alloc
- run: cargo check --no-default-features --features std
- run: cargo check --no-default-features --features alloc
features:
runs-on: ubuntu-latest
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- uses: taiki-e/install-action@nextest
- name: Collect coverage data (including doctests)
run: |
cargo +nightly llvm-cov --no-report nextest
cargo +nightly llvm-cov --no-report --doc
cargo +nightly llvm-cov --no-report nextest --workspace --all-features
cargo +nightly llvm-cov --no-report --doc --workspace --all-features
cargo +nightly llvm-cov report --doctests --lcov --output-path lcov.info
- name: Upload coverage data to codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 66c1d16

Please sign in to comment.