We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6197d4 commit 874f990Copy full SHA for 874f990
.github/workflows/rust.yml
@@ -25,16 +25,23 @@ env:
25
CARGO_TERM_COLOR: always
26
27
jobs:
28
+ lint:
29
+ name: Lint code
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v4
33
+ - name: Check format
34
+ run: cargo fmt --check
35
+
36
build:
37
+ needs: lint
38
name: Build and Test
39
runs-on: ${{ matrix.os }}
40
strategy:
41
matrix:
42
os: [ ubuntu-latest, macos-latest, windows-latest ]
43
steps:
44
- uses: actions/checkout@v4
- - name: Check format
- run: cargo fmt --check
45
- name: Build
46
run: cargo build --verbose
47
- uses: taiki-e/install-action@nextest
@@ -44,6 +51,7 @@ jobs:
51
run: cargo test --doc --verbose --all-features
52
53
codecov:
54
55
name: Code Coverage
48
56
runs-on: ubuntu-latest
49
57
env:
0 commit comments