Compare commits
2 commits
e231352009
...
52f8b313f4
Author | SHA1 | Date | |
---|---|---|---|
52f8b313f4 | |||
f510f6291c |
2 changed files with 12 additions and 27 deletions
|
@ -1,4 +1,4 @@
|
||||||
name: CI
|
name: Rust CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -7,32 +7,17 @@ on:
|
||||||
branches: [master]
|
branches: [master]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
rust_ci:
|
||||||
name: Rust build
|
name: Rust CI
|
||||||
runs-on: debian
|
runs-on: debian
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
|
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
|
||||||
- run: cargo build
|
- name: Build the source code
|
||||||
rustfmt:
|
run: cargo build
|
||||||
name: Rust format
|
- name: Check the code format
|
||||||
runs-on: debian
|
run: cargo fmt -- --check
|
||||||
steps:
|
- name: Run cargo-check
|
||||||
- uses: actions/checkout@v4
|
run: cargo check
|
||||||
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
|
- name: Run cargo-clippy
|
||||||
- run: cargo fmt -- --check
|
run: cargo clippy -- -D warnings
|
||||||
check:
|
|
||||||
name: Rust check
|
|
||||||
runs-on: debian
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
|
|
||||||
- run: cargo check
|
|
||||||
clippy:
|
|
||||||
name: Rust clippy
|
|
||||||
runs-on: debian
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
|
|
||||||
- run: cargo clippy -- -D warnings
|
|
||||||
|
|
||||||
|
|
|
@ -54,4 +54,4 @@ types_allowed = ["feat", "fix", "docs", "refactor", "change", "deprecate", "remo
|
||||||
|
|
||||||
# Rule: Header must match regex pattern.
|
# Rule: Header must match regex pattern.
|
||||||
# Example: '^JIRA-\d+:'.
|
# Example: '^JIRA-\d+:'.
|
||||||
header_pattern = '^\w+(\s\(\w+\))?(!)?: \w'
|
header_pattern = '^\w+(\(\w+\))?(!)?: \w'
|
||||||
|
|
Loading…
Reference in a new issue