Skip to content

Commit

Permalink
workflow run command fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stojanovic00 committed Feb 10, 2025
1 parent ab2da9e commit 3aeee08
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ jobs:
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov nextest -p informalsystems-malachitebft-test-mbt \
-p informalsystems-malachitebft-starknet-test-mbt --all-features --lcov --output-path lcov-mbt.info
run: |
cargo llvm-cov nextest -p informalsystems-malachitebft-test-mbt \
-p informalsystems-malachitebft-starknet-test-mbt --all-features --lcov --output-path lcov-mbt.info
- name: Generate text report
run: cargo llvm-cov report
- name: Upload coverage artifact
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/mbt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,11 @@ jobs:
run: echo "QUINT_SEED=$(date +%s)" >> $GITHUB_ENV
- name: Build code
working-directory: code/crates/test/mbt
run: cargo nextest run -p informalsystems-malachitebft-test-mbt \
-p informalsystems-malachitebft-starknet-test-mbt --all-features --no-run
run: |
cargo nextest run -p informalsystems-malachitebft-test-mbt \
-p informalsystems-malachitebft-starknet-test-mbt --all-features --no-run
- name: Run tests
working-directory: code/crates/test/mbt
run: cargo nextest run -p informalsystems-malachitebft-test-mbt \
-p informalsystems-malachitebft-starknet-test-mbt --all-features
run: |
cargo nextest run -p informalsystems-malachitebft-test-mbt \
-p informalsystems-malachitebft-starknet-test-mbt --all-features

0 comments on commit 3aeee08

Please sign in to comment.