Remove "all features" job b/c it's a duplicate of the cargo hack job #40
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: Checks | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
# `cargo hack --each-feature` runs the given command for each feature, including "no features", "all features", | |
# and the `default` feature. | |
roadster_each_feature: | |
name: Each feature | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Test | |
run: cargo hack test --no-fail-fast --each-feature --workspace | |
- name: Check | |
run: cargo hack check --each-feature --no-dev-deps --workspace | |
- name: Clippy | |
run: cargo hack clippy --workspace --all-targets --each-feature -- -D warnings | |
check_formatting: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Formatting | |
run: cargo fmt --all --check | |
check_docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Docs | |
env: | |
RUSTDOCFLAGS: "-D rustdoc::all" | |
run: cargo doc --all-features --no-deps |