-
Notifications
You must be signed in to change notification settings - Fork 1
95 lines (83 loc) · 2.28 KB
/
cargo.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Cargo
on:
push:
branches:
- main
- release
pull_request:
branches:
- "**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
clippy:
name: clippy/check/doc
runs-on: amd64
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update -y && \
sudo apt-get install -y --no-install-recommends \
cmake \
g++ \
libsasl2-dev \
libssl-dev \
libudev-dev \
pkg-config
- name: Get protoc from github releases
run: |
sudo ./ci/get-protoc.sh
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: 1.71.0
override: true
components: rustfmt, clippy
- uses: tespkg/actions-cache@v1
with:
accessKey: ${{ secrets.AWS_ACCESS_KEY_ID }}
secretKey: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
bucket: ${{ vars.AWS_BUCKET }}
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ github.event.repository.name }}-${{ runner.arch }}-cargo-clippy-${{ hashFiles('**/Cargo.lock', 'rust-toolchain.toml') }}
- name: cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-features
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features --release
- name: check lockfile
run: |
diff Cargo.lock <(git show HEAD:Cargo.lock)
- name: cargo doc
uses: actions-rs/cargo@v1
with:
command: doc
args: --workspace --all-features
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-12-11
override: true
components: rustfmt, clippy
- name: cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check