Compare commits

...

2 commits

Author SHA1 Message Date
52f8b313f4
fix(sumi): Remove white space from the header pattern
Some checks failed
/ main (pull_request) Successful in 12s
Rust CI / Rust CI (pull_request) Failing after 3m44s
2024-03-17 08:05:10 +03:00
f510f6291c
fix(ci): merge rust ci jobs into one job
Fix #1
2024-03-17 08:03:27 +03:00
2 changed files with 12 additions and 27 deletions

View file

@ -1,4 +1,4 @@
name: CI
name: Rust CI
on:
push:
@ -7,32 +7,17 @@ on:
branches: [master]
jobs:
build:
name: Rust build
rust_ci:
name: Rust CI
runs-on: debian
steps:
- uses: actions/checkout@v4
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
- run: cargo build
rustfmt:
name: Rust format
runs-on: debian
steps:
- uses: actions/checkout@v4
- uses: https://codeberg.org/TheAwiteb/rust-action@v1.70
- run: cargo fmt -- --check
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
- name: Build the source code
run: cargo build
- name: Check the code format
run: cargo fmt -- --check
- name: Run cargo-check
run: cargo check
- name: Run cargo-clippy
run: cargo clippy -- -D warnings

View file

@ -54,4 +54,4 @@ types_allowed = ["feat", "fix", "docs", "refactor", "change", "deprecate", "remo
# Rule: Header must match regex pattern.
# Example: '^JIRA-\d+:'.
header_pattern = '^\w+(\s\(\w+\))?(!)?: \w'
header_pattern = '^\w+(\(\w+\))?(!)?: \w'