-
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
173 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,173 @@ | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
merge_group: | ||
|
||
name: Continuous integration | ||
|
||
env: | ||
RUSTFLAGS: "-Dwarnings" | ||
RUSTDOCFLAGS: "-Dwarnings" | ||
RUST_BACKTRACE: short | ||
|
||
CARGO_INCREMENTAL: 0 | ||
CARGO_NET_RETRY: 10 | ||
RUSTUP_MAX_RETRIES: 10 | ||
|
||
rust_nightly: nightly-2024-07-03 | ||
rust_msrv: 1.79.0 | ||
|
||
CI: 1 | ||
|
||
jobs: | ||
# Depends on all action that are required for a "successful" CI run. | ||
ci-pass: | ||
name: CI succeeded | ||
runs-on: ubuntu-latest | ||
if: always() | ||
|
||
needs: | ||
- fmt | ||
- test | ||
- check-examples | ||
- clippy | ||
- doc | ||
|
||
steps: | ||
- name: Check whether the needed jobs succeeded or failed | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
jobs: ${{ toJSON(needs) }} | ||
|
||
fmt: | ||
name: fmt | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Rust ${{ env.rust_nightly }} | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.rust_nightly }} | ||
components: rustfmt | ||
|
||
- name: Cache Dependencies | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Check formatting | ||
run: | | ||
cargo fmt --all -- --check | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
- msrv | ||
|
||
include: | ||
- rust: stable | ||
toolchain: stable | ||
features: "--all-features" | ||
- rust: beta | ||
toolchain: beta | ||
features: "--all-features" | ||
- rust: nightly | ||
toolchain: nightly-2024-07-03 | ||
features: "--all-features" | ||
- rust: msrv | ||
toolchain: 1.79.0 | ||
features: "--all-features" | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Rust ${{ matrix.toolchain }} | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
|
||
- name: Cache Dependencies | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Compile | ||
run: | | ||
cargo +${{ matrix.toolchain }} test --tests --no-run --verbose ${{ matrix.features }} | ||
- name: Test unit & integration tests | ||
run: | | ||
cargo +${{ matrix.toolchain }} test --tests --verbose ${{ matrix.features }} | ||
- name: Test documentation tests | ||
if: ${{ matrix.rust != 'msrv' }} | ||
run: | | ||
cargo +${{ matrix.toolchain }} test --doc --verbose ${{ matrix.features }} | ||
check-examples: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Rust stable | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
|
||
- name: Cache Dependencies | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Check examples | ||
run: | | ||
cargo +stable check --examples --all-features | ||
clippy: | ||
name: Run linter | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Rust ${{ env.rust_nightly }} | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.rust_nightly }} | ||
components: clippy | ||
|
||
- name: Cache Dependencies | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: clippy | ||
run: | | ||
cargo clippy --all-targets --all-features | ||
doc: | ||
name: check docs | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Rust ${{ env.rust_nightly }} | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: ${{ env.rust_nightly }} | ||
|
||
- name: Cache Dependencies | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: rustdoc | ||
run: | | ||
cargo doc |