-
Notifications
You must be signed in to change notification settings - Fork 8
50 lines (39 loc) · 1.03 KB
/
rust.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Rust
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
rust-ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt, clippy, llvm-tools-preview
- name: Setup rust smart caching
uses: Swatinem/rust-cache@v2
with:
cache-on-failure: "true"
- name: Run cargo fmt
run: cargo fmt --all -- --check
- name: Run cargo clippy
run: cargo clippy --no-deps -- -D warnings
- name: Run cargo build
run: cargo build
- name: Cargo tests
run: cargo test
- name: Setup cargo-llvm-cov
run: cargo install cargo-llvm-cov
- name: Run code coverage test
run: |
cargo llvm-cov test --fail-under-lines 90