Skip to content

Commit a2488ae

Browse files
committed
ci: include more tests
1 parent 7b17bcb commit a2488ae

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

.github/workflows/test.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,23 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
build:
13+
lint:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Clippy
20+
run: |
21+
rustup component add clippy
22+
cargo clippy --all-targets --all-features
23+
24+
- name: Coverage
25+
run: |
26+
cargo install cargo-tarpaulin
27+
cargo tarpaulin --all-targets --all-features --out stdout --engine llvm
28+
29+
test:
1430
runs-on: ubuntu-latest
1531

1632
steps:

0 commit comments

Comments
 (0)