-
Notifications
You must be signed in to change notification settings - Fork 0
146 lines (129 loc) · 3.71 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
name: cargo
on:
push:
branches:
main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: wasm32-wasip1
- uses: Swatinem/rust-cache@v2
- uses: swlynch99/cargo-sweep-action@v1
- uses: taiki-e/install-action@v2
with:
tool: cargo-nextest,cargo-component
- name: create test database
run: cargo run --bin xtask --profile dev-ci -- dev -d
- name: cargo nextest run
run: |
cargo nextest run \
--locked \
--all-targets \
--all-features \
--no-fail-fast \
--success-output final \
--cargo-profile dev-ci \
--final-status-level skip
shell: bash
- name: doctests
run: |
cargo test --doc \
--all-features \
--locked
shell: bash
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: rustfmt
run: |
cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
shared-key: clippy
- uses: swlynch99/cargo-sweep-action@v1
- uses: taiki-e/install-action@v2
with:
tool: clippy-sarif,sarif-fmt,cargo-deduplicate-warnings
- name: cargo clippy
id: cargo-clippy
run: |
cargo clippy --all-targets --all-features --message-format json --profile dev-ci \
| cargo deduplicate-warnings \
| clippy-sarif \
| tee clippy.sarif \
| sarif-fmt
continue-on-error: true
- uses: actions/upload-artifact@v4
with:
name: clippy-sarif
path: clippy.sarif
# Prime the cache with the xtask binary so it can be used by the check-sqlx job.
# We skip this if the step above failed to error lints get emitted more quickly.
- name: build xtask
if: ${{ steps.cargo-clippy.outcome == 'success' }}
run: cargo build -p xtask --profile dev-ci
clippy-upload:
if: github.event_name == 'pull_request' || github.ref == 'reads/heads/main'
runs-on: ubuntu-latest
needs:
- clippy
permissions:
security-events: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: clippy-sarif
- uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: clippy.sarif
check-sqlx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
shared-key: clippy
save-if: false
- uses: taiki-e/install-action@v2
with:
tool: sqlx-cli
- name: create test database
run: cargo run --bin xtask --profile dev-ci -- dev -d
- name: check sqlx
run: cargo sqlx prepare --workspace --check
check-success:
name: verify all tests pass
runs-on: ubuntu-latest
if: always()
needs:
- test
- clippy
- rustfmt
- check-sqlx
steps:
- name: fail if any dependencies failed
if: contains(needs.*.result, 'failure')
shell: bash
run: exit 1
- name: no-op
run: echo "All checks passed!"