-
Notifications
You must be signed in to change notification settings - Fork 0
166 lines (143 loc) · 4.18 KB
/
ci-code.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
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
name: Lint and Test Code
on:
pull_request:
branches:
- main
paths:
- src/**
- Cargo.*
- .github/workflows/ci-code.yaml
jobs:
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: harden runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.0
with:
submodules: recursive
persist-credentials: false
- name: 'Install stable rust toolchain with rustfmt'
run: |
rustup update --no-self-update stable
rustup default stable
rustup component add rustfmt
- name: 'cargo fmt'
run: cargo fmt --all -- --check
shfmt:
name: shfmt
runs-on: ubuntu-latest
steps:
- name: harden runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.0
with:
submodules: recursive
persist-credentials: false
- name: shfmt
run: |
GOBIN=/usr/local/bin go install mvdan.cc/sh/v3/cmd/shfmt@latest
if ! ./hack/code/shfmt.sh; then
echo ""
echo "Please run \`PROTECT_SHFMT_WRITE=true ./hack/code/shfmt.sh\`"
fi
shellcheck:
name: shellcheck
runs-on: ubuntu-latest
steps:
- name: harden runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.0
with:
submodules: recursive
persist-credentials: false
- name: shellcheck
run: ./hack/code/shellcheck.sh
full-build:
runs-on: ubuntu-latest
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@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.0
with:
submodules: recursive
persist-credentials: false
- name: 'Install stable rust toolchain'
run: |
rustup update --no-self-update stable
rustup default stable
- name: cargo build
run: cargo build
full-test:
runs-on: ubuntu-latest
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@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.0
with:
submodules: recursive
persist-credentials: false
- name: 'Install stable rust toolchain'
run: |
rustup update --no-self-update stable
rustup default stable
- name: 'cargo test'
run: cargo test
full-clippy:
runs-on: ubuntu-latest
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@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: checkout repository
uses: actions/checkout@cbb722410c2e876e24abbe8de2cc27693e501dcb # v4.2.0
with:
submodules: recursive
persist-credentials: false
- name: 'Install stable rust toolchain with clippy'
run: |
rustup update --no-self-update stable
rustup default stable
rustup component add clippy
- name: 'cargo clippy'
run: cargo clippy