-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 2.4 KB
/
lint.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
name: Lint
on: push
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always
jobs:
gitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# PRs (hopefully??!) won't have more than 20 commits
fetch-depth: 20
- name: Install gitlint
run: python -m pip install gitlint
- name: Run gitlint
env:
# Don't use github.event.pull_request.base-sha, because that requires a workflow
# event of 'pull_request' which precludes running this workflow on 'main'.
GITLINT_COMMIT_RANGE: "origin/main..HEAD"
run: |
echo "GITLINT_COMMIT_RANGE=$GITLINT_COMMIT_RANGE"
git fetch origin main
git log --color=always --graph --decorate --oneline "$GITLINT_COMMIT_RANGE"
gitlint \
--ignore-stdin \
--config .github/gitlint/gitlint.ini \
--extra-path .github/gitlint/ \
--commits "$GITLINT_COMMIT_RANGE"
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Setup Rust cache
uses: swatinem/rust-cache@v2
- name: Run rustfmt
run: cargo fmt -- --check --config group_imports=StdExternalCrate,imports_granularity=Module
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: clippy
- name: Setup Rust cache
uses: swatinem/rust-cache@v2
- name: Build
run: cargo build --release --all-targets
- name: Clippy
run: cargo clippy --no-deps --release --all-targets
# The tests depend on the 'herostratus' binary that 'cargo build' built
- name: Test
run: |
git fetch
cargo test --release --all-targets
cargo test --release --all-targets -- --ignored required