-
Notifications
You must be signed in to change notification settings - Fork 1
75 lines (63 loc) · 1.58 KB
/
Copy pathrust.yml
File metadata and controls
75 lines (63 loc) · 1.58 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
format_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt --all -- --check
clippy_check:
runs-on: ubuntu-latest
needs: format_check
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
doc_check:
runs-on: ubuntu-latest
needs: format_check
steps:
- uses: actions/checkout@v4
- name: Check documentation
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --no-deps --all-features
build:
environment: CICD
runs-on: ubuntu-latest
needs: [clippy_check, doc_check]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
test:
environment: CICD
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build
- name: Run tests - Full
run: cargo test --all-features
- name: Run tests - http1
run: cargo test --features http1
- name: Run tests - http2
run: cargo test --features http2
coverage:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: Install tarpaulin
run: cargo install cargo-tarpaulin
- name: Code coverage check
run: |
cargo tarpaulin --all-features --workspace --config coverage.toml --fail-under 80