-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (42 loc) · 1.07 KB
/
main.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
name: CI
on:
pull_request:
push:
branches: ["main"]
defaults:
run:
shell: bash
jobs:
# Check coding style
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
for manifest in `find . ! -path '*/day*' -name Cargo.toml`
do
echo check fmt for $manifest
cargo fmt --all --manifest-path $manifest -- --check
done
# Check static analysis defaults
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
for manifest in `find . ! -path '*/day*' -name Cargo.toml`
do
echo check clippy for $manifest
cargo clippy --manifest-path $manifest -- --no-deps -A clippy::all
done
# Check non-regression tests
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
for manifest in `find . ! -path '*/day*' -name Cargo.toml`
do
echo test for $manifest
cargo test --manifest-path $manifest --
done