Skip to content

Commit 7b57858

Browse files
committed
update ci.yml
1 parent e0f122a commit 7b57858

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,16 @@ jobs:
5757
formatting:
5858
runs-on: ubuntu-latest
5959
steps:
60+
- name: Checkout repository
6061
- uses: actions/checkout@v3
62+
6163
- name: Install Rust
6264
uses: actions-rs/toolchain@v1
6365
with:
6466
toolchain: stable
6567
components: rustfmt
68+
69+
- name: Run rustfmt
6670
- run: cargo fmt -- --check
6771

6872
coverage:
@@ -74,15 +78,14 @@ jobs:
7478
- name: Install nightly toolchain
7579
uses: actions-rs/toolchain@v1
7680
with:
77-
toolchain: nightly
81+
toolchain: stable
7882
override: true
7983

8084
- name: Install cargo-tarpaulin
8185
uses: actions-rs/[email protected]
8286
with:
8387
crate: cargo-tarpaulin
8488
version: latest
85-
use-tool-cache: true
8689

8790
- name: Coverage with tarpaulin
8891
run: cargo tarpaulin --out Lcov -- --test-threads 1

0 commit comments

Comments
 (0)