Skip to content

Commit c7db752

Browse files
committed
Make test and coverage jobs more consistent
1 parent b3b8aa3 commit c7db752

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ jobs:
66
coverage:
77
runs-on: ubuntu-22.04
88
steps:
9+
- uses: dtolnay/[email protected]
10+
911
- uses: actions/checkout@v3
1012

11-
- name: Install Rust
13+
- name: Install LLVM tools
1214
run: rustup toolchain install stable --component llvm-tools-preview
15+
1316
- name: Install cargo-llvm-cov
1417
uses: taiki-e/install-action@cargo-llvm-cov
1518

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ jobs:
1515

1616
steps:
1717
- uses: dtolnay/[email protected]
18+
1819
- name: Install LLVM package
1920
run: sudo apt-get install llvm-13-dev
20-
- uses: actions/checkout@v2
21+
22+
- uses: actions/checkout@v3
23+
2124
- name: Build
2225
run: cargo build --verbose
2326
- name: Run tests

0 commit comments

Comments
 (0)