-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (47 loc) · 1.34 KB
/
push.yml
File metadata and controls
57 lines (47 loc) · 1.34 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
name: Pipeline
# consistency regarding formatting and idiomatic Rust
on:
push:
branches-ignore:
- main
- dev
env:
CARGO_TERM_COLOR: always
RUSTDOCFLAGS: "-Dwarnings"
jobs:
pipeline:
name: Pipeline - test and lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup dtolnay/rust-toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy, rustfmt
# load project cache to reduce compilation time
- name: Setup project cache
uses: actions/cache@v3
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
restore-keys: ${{ runner.os }}-cargo-
- name: Update dependencies
run: cargo update
- name: Build
run: cargo build
- name: Generate docs
run: cargo doc
- name: Test
run: cargo test --verbose
# Lints: Clippy and Fmt
- name: Clippy
run: cargo clippy -- -D warnings
- name: Format
run: cargo fmt --all -- --check