-
Notifications
You must be signed in to change notification settings - Fork 5
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
51fa905
commit 0af5a1d
Showing
3 changed files
with
68 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: CI | ||
on: | ||
push: | ||
branches: [ master, develop, release/* ] | ||
pull_request: | ||
branches: [ master, release/* ] | ||
defaults: | ||
run: | ||
shell: bash | ||
env: | ||
CARGO_TERM_COLOR: always | ||
RUST_TOOLCHAIN: 1.76.0 | ||
jobs: | ||
rustfmt: | ||
name: Checks / Format | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the Repository | ||
uses: actions/checkout@v4 | ||
- name: Install Rust Toolchain | ||
run: | | ||
rustup toolchain install ${{ env.RUST_TOOLCHAIN }} --profile minimal --component rustfmt | ||
rustup override set ${{ env.RUST_TOOLCHAIN }} | ||
- name: Format Check | ||
run: make fmt | ||
clippy: | ||
name: Checks / Clippy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the Repository | ||
uses: actions/checkout@v4 | ||
- name: Install Rust Toolchain | ||
run: | | ||
rustup toolchain install ${{ env.RUST_TOOLCHAIN }} --profile minimal --component clippy | ||
rustup override set ${{ env.RUST_TOOLCHAIN }} | ||
- name: Lint Check | ||
run: make clippy | ||
test: | ||
name: Tests / Build & Test | ||
needs: [ rustfmt, clippy ] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-latest, macos-latest, windows-latest ] | ||
fail-fast: true | ||
max-parallel: 3 | ||
steps: | ||
- name: Checkout the Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install Rust Toolchain | ||
run: | | ||
rustup toolchain install ${{ env.RUST_TOOLCHAIN }} --profile minimal | ||
rustup override set ${{ env.RUST_TOOLCHAIN }} | ||
- name: Install cargo-nextest | ||
uses: taiki-e/install-action@nextest | ||
- name: Build | ||
run: make build | ||
- name: Unit Testing | ||
run: make test |
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
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