-
Notifications
You must be signed in to change notification settings - Fork 1
75 lines (68 loc) · 1.76 KB
/
ci.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
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
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
RUST_LOG: gset
jobs:
fmt:
name: "Fmt"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup show active-toolchain -v
- run: rustup component add rustfmt
- run: cargo fmt --version
- run: cargo fmt -- --check
build:
name: "Build"
needs: fmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build project
run: cargo build --all-targets --all-features
docs:
name: "Docs"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build Documentation
run: cargo doc --all --no-deps --release
clippy:
name: "Clippy"
needs: fmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Add clippy
run: rustup component add clippy
- name: Clippy version
run: cargo clippy --version
- name: Run clippy
run: cargo clippy
- name: Run clippy with all features
run: cargo clippy --all-targets --all-features
- name: Run clippy on tests
run: cargo clippy --tests --all-targets --all-features
tests:
name: "Tests"
needs: [build, clippy]
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
run: cargo test
- name: Run tests with all features
run: cargo test --all-features
- name: Run tests with all features in release mode
run: cargo test --all-features --release