-
Notifications
You must be signed in to change notification settings - Fork 6
36 lines (34 loc) · 949 Bytes
/
clippy.yml
File metadata and controls
36 lines (34 loc) · 949 Bytes
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
name: Backend CI Rust Clippy
permissions: {}
on:
push:
branches:
- main
pull_request:
paths:
- backend/rs/**
- examples/**/backend/**
- Cargo.toml
- Cargo.lock
- .github/workflows/provision-linux.sh
- .github/workflows/provision-darwin.sh
- .github/workflows/clippy.yml
- rust-toolchain.toml
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cargo-clippy-backend-linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Provision Linux
run: bash .github/workflows/provision-linux.sh
- name: Run Clippy Linux
run: |
set -eExuo pipefail
export CARGO_TERM_COLOR=always # ensure output has colors
cargo clippy -- -Dwarnings
cargo fmt --check