Skip to content

Commit

Permalink
Add names to a few GitHub Actions test steps
Browse files Browse the repository at this point in the history
  • Loading branch information
gluxon committed May 14, 2022
1 parent 2efb977 commit 724d4bb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,22 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/toolchain@v1
- name: Install llvm-tools-preview
uses: actions-rs/toolchain@v1
with:
components: llvm-tools-preview
override: true
toolchain: stable
- uses: actions-rs/cargo@v1
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features --no-fail-fast
env:
LLVM_PROFILE_FILE: "nldl-%p-%m.profraw"
RUSTFLAGS: '-Cinstrument-coverage'
- uses: actions-rs/cargo@v1
- name: Install grcov
uses: actions-rs/cargo@v1
with:
command: install
args: grcov
Expand Down

0 comments on commit 724d4bb

Please sign in to comment.