-
Notifications
You must be signed in to change notification settings - Fork 5
58 lines (56 loc) · 1.57 KB
/
sarif-and-test.yaml
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
---
name: Clippy analysis (Code Quality)
on:
push:
branches:
- main
paths-ignore:
- 'java-engine/**'
pull_request:
branches:
- main
paths-ignore:
- 'java-engine/**'
schedule:
# Runs on schedule at 1745 UTC every Tuesday
- cron: '45 17 * * 2'
jobs:
rust-clippy:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install rust
run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile default
rustup show
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Install required cargo packages for reporting format
run: cargo install clippy-sarif sarif-fmt
- name: Check formatting
run: cargo fmt -- --check
- name: Run rust-clippy
run: |
cargo clippy --all-features --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true
- name: Upload analysis results to Github
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results.sarif
category: clippy
wait-for-processing: true
- name: Get client spec
uses: actions/checkout@v3
with:
repository: Unleash/client-specification
ref: v5.2.2
path: client-specification
- name: Run tests
run: |
cargo test --all-features