-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
3c6f18f
commit ac8f107
Showing
1 changed file
with
75 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,75 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUSTFLAGS: -Dwarnings | ||
RUST_BACKTRACE: 1 | ||
RUST_LOG: gset | ||
|
||
jobs: | ||
fmt: | ||
name: "Fmt" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: rustup show active-toolchain -v | ||
- run: rustup component add rustfmt | ||
- run: cargo fmt --version | ||
- run: cargo fmt -- --check | ||
|
||
build: | ||
name: "Build" | ||
needs: fmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Build project | ||
run: cargo build --all-targets --all-features | ||
|
||
docs: | ||
name: "Docs" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Build Documentation | ||
run: cargo doc --all --no-deps --release | ||
|
||
clippy: | ||
name: "Clippy" | ||
needs: fmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Add clippy | ||
run: rustup component add clippy | ||
- name: Clippy version | ||
run: cargo clippy --version | ||
- name: Run clippy | ||
run: cargo clippy | ||
- name: Run clippy with all features | ||
run: cargo clippy --all-targets --all-features | ||
- name: Run clippy on tests | ||
run: cargo clippy --tests --all-targets --all-features | ||
|
||
tests: | ||
name: "Tests" | ||
needs: [build, clippy] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Run tests | ||
run: cargo test | ||
- name: Run tests with all features | ||
run: cargo test --all-features | ||
- name: Run tests with all features in release mode | ||
run: cargo test --all-features --release |