entrait 0.7 #215
Workflow file for this run
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
name: Rust | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Test feature powerset | |
run: cargo hack --feature-powerset --exclude-features "default nightly-tests" --exclude-no-default-features test | |
- name: Test workspace | |
run: cargo test --workspace --features "unimock" | |
- name: Doctest | |
run: cargo test --doc --features "unimock" | |
- name: Clippy | |
run: cargo clippy --features "unimock" -- -D warnings | |
- name: Build examples | |
run: cargo build --all | |
test-nightly: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@nightly | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Test nightly features | |
run: cargo hack --feature-powerset --exclude-features "default boxed-futures use-boxed-futures" --exclude-no-default-features test |