-
Notifications
You must be signed in to change notification settings - Fork 27
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
2 changed files
with
78 additions
and
32 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 |
---|---|---|
@@ -1,45 +1,91 @@ | ||
name: Rust | ||
name: Rust CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
RUSTFLAGS: -Dwarnings | ||
|
||
jobs: | ||
build: | ||
|
||
build_and_test: | ||
name: Build and test | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
rust: [stable, nightly] | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: Install ${{ matrix.rust }} | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
override: true | ||
|
||
- name: Set up Rust | ||
uses: actions/checkout@v3 | ||
with: | ||
rust-version: stable | ||
|
||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: check and fmt and test | ||
run: | | ||
cargo check | ||
cargo fmt --all -- --check | ||
cargo test | ||
- name: Docs | ||
run: cargo doc --no-deps | ||
- uses: actions/checkout@master | ||
|
||
- name: Install ${{ matrix.rust }} | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
override: true | ||
|
||
- name: check | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
args: --all --bins --examples --features logger | ||
|
||
- name: check avoid-dev-deps | ||
uses: actions-rs/cargo@v1 | ||
if: matrix.rust == 'nightly' | ||
with: | ||
command: check | ||
args: --all -Z avoid-dev-deps | ||
|
||
- name: check unstable | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
args: --all --bins --examples --tests --features unstable,logger | ||
|
||
- name: check no-default-features | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
args: --no-default-features | ||
|
||
- name: check benches | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: check | ||
args: --benches | ||
|
||
- name: tests | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --all --features logger | ||
|
||
- name: tests unstable | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --all --features unstable,logger | ||
|
||
check_fmt_and_docs: | ||
name: Checking fmt, clippy, and docs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
|
||
- name: setup | ||
run: | | ||
rustup component add clippy rustfmt | ||
rustc --version | ||
- name: clippy | ||
run: cargo clippy --tests --examples --features logger -- -D warnings | ||
|
||
- name: fmt | ||
run: cargo fmt --all -- --check | ||
|
||
- name: Docs | ||
run: cargo doc --no-deps |
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