-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (49 loc) · 1.2 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
name: CI
permissions:
contents: read
'on':
pull_request: null
push:
branches:
- main
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
CLICOLOR: 1
CARGO_INCREMENTAL: 0
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
ci:
permissions:
contents: none
name: CI
needs: lint
runs-on: ubuntu-latest
if: always()
steps:
- name: Failed
run: exit 1
if: >-
contains(needs.*.result, 'failure') || contains(needs.*.result,
'cancelled') || contains(needs.*.result, 'skipped')
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: 'clippy, rustfmt'
toolchain: stable
target: x86_64-unknown-linux-gnu
- name: Check format
run: cargo fmt --all -- --check
- name: Check clippy
run: >-
cargo clippy --workspace --all-features --all-targets -- -D warnings
--allow deprecated