-
Notifications
You must be signed in to change notification settings - Fork 15
230 lines (199 loc) · 7.02 KB
/
ci-code.yaml
File metadata and controls
230 lines (199 loc) · 7.02 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
name: Lint and Test Code
on:
pull_request:
branches:
- main
paths:
- bin/**
- examples/**
- src/**
- Cargo.*
- rust-toolchain.toml
- .github/workflows/ci-code.yaml
permissions:
contents: read # Default token to read
jobs:
setup-cargo-make:
name: setup-cargo-make
runs-on: ubuntu-latest
outputs:
cargo_make_version: ${{ steps.get-version.outputs.cargo_make_version }}
cache-key: ${{ steps.cache-cargo-make.outputs.cache-primary-key }}
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: Fetch latest cargo-make version
id: get-version
run: |
VERSION=$(curl -s \
-H "User-Agent: github.com/edera-dev/styrolite (contact: support@edera.dev>)" \
https://crates.io/api/v1/crates/cargo-make | jq -r '.crate.max_stable_version')
echo "cargo_make_version=$VERSION" >> $GITHUB_OUTPUT
- name: Cache cargo-make binary
id: cache-cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ steps.get-version.outputs.cargo_make_version }}
- name: Install cargo-make if missing or outdated
if: steps.cache-cargo-make.outputs.cache-hit != 'true'
run: |
cargo install cargo-make --version "${CARGO_MAKE_VERSION}" --force
env:
CARGO_MAKE_VERSION: ${{ steps.get-version.outputs.cargo_make_version }}
- name: Verify cargo-make
run: cargo make --version
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
needs: setup-cargo-make
steps:
- name: harden runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
persist-credentials: false
- name: Restore cached cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ needs.setup-cargo-make.outputs.cargo_make_version }}
- name: 'cargo fmt'
run: cargo make format-check
shfmt:
name: shfmt
runs-on: ubuntu-latest
needs: setup-cargo-make
steps:
- name: harden runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
persist-credentials: false
- name: Restore cached cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ needs.setup-cargo-make.outputs.cargo_make_version }}
- name: shfmt
run: |
GOBIN=/usr/local/bin go install mvdan.cc/sh/v3/cmd/shfmt@latest
if ! cargo make shfmt; then
echo ""
echo "Please run \`cargo make shfmt-write\`"
exit 1
fi
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
needs: setup-cargo-make
steps:
- name: harden runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
persist-credentials: false
- name: Restore cached cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ needs.setup-cargo-make.outputs.cargo_make_version }}
- name: shellcheck
run: cargo make shellcheck
full-build:
runs-on: ubuntu-latest
needs: setup-cargo-make
strategy:
fail-fast: false
matrix:
arch:
- x86_64
env:
TARGET_ARCH: "${{ matrix.arch }}"
name: 'Full build linux-${{ matrix.arch }}'
steps:
- name: harden runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
persist-credentials: false
- name: Restore cached cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ needs.setup-cargo-make.outputs.cargo_make_version }}
- name: cargo build
run: cargo make build
full-test:
runs-on: ubuntu-latest
needs: setup-cargo-make
strategy:
fail-fast: false
matrix:
arch:
- x86_64
env:
TARGET_ARCH: "${{ matrix.arch }}"
name: 'Full test linux-${{ matrix.arch }}'
steps:
- name: harden runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
persist-credentials: false
- name: Restore cached cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ needs.setup-cargo-make.outputs.cargo_make_version }}
- name: 'cargo test'
run: cargo make test
full-clippy:
runs-on: ubuntu-latest
needs: setup-cargo-make
strategy:
matrix:
arch:
- x86_64
env:
TARGET_ARCH: "${{ matrix.arch }}"
name: 'Full clippy linux-${{ matrix.arch }}'
steps:
- name: harden runner
uses: step-security/harden-runner@fa2e9d605c4eeb9fcad4c99c224cee0c6c7f3594 # v2.16.0
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
persist-credentials: false
- name: Restore cached cargo-make
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: ~/.cargo/bin/cargo-make
key: ${{ runner.os }}-cargo-make-${{ needs.setup-cargo-make.outputs.cargo_make_version }}
- name: 'cargo clippy'
run: cargo make clippy