-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Lint | ||
on: [push] | ||
env: | ||
RUSTFLAGS: -D warnings | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
gitlint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Lint Git commits | ||
# TODO: This doesn't let you setup custom rules. For example, I like to allow the | ||
# max-line length rule to be violated, if it's an indented blockquote (code block, log | ||
# snippet), or if it looks like a URL or footnote. | ||
# Maybe just shell out to gitlint, and save custom rules here in the repo? | ||
uses: aschbacd/gitlint-action@v1 | ||
with: | ||
commit-message-body-max-length: 80 | ||
|
||
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 --release --all-targets | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Rust toolchain | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
- name: Setup Rust cache | ||
uses: swatinem/rust-cache@v2 | ||
- name: Test | ||
run: cargo test --release --all-targets |