Skip to content

Commit

Permalink
Add -- --nocapture and reformatted the file
Browse files Browse the repository at this point in the history
  • Loading branch information
1Git2Clone committed Nov 17, 2024
1 parent 075ec7a commit 83214ed
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose --features hw1
run: |
cargo build --verbose --features hw1
- name: hw1-test-1
run: cargo test --verbose --features hw1-test-1
run: |
cargo test --verbose --features hw1-test-1 -- --nocapture
- name: hw1-test-2
run: cargo test --verbose --features hw1-test-2
run: |
cargo test --verbose --features hw1-test-2 -- --nocapture
- name: hw1-test-3
run: cargo test --verbose --features hw1-test-3
run: |
cargo test --verbose --features hw1-test-2 -- --nocapture

0 comments on commit 83214ed

Please sign in to comment.