Use cargo hack for testing feature powerset #188
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: build | |
on: [push, pull_request] | |
jobs: | |
# --------------------------------------------------------------------------- | |
# Lint | |
# --------------------------------------------------------------------------- | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: [stable, beta, nightly] | |
env: | |
RUSTFLAGS: --deny warnings | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: clippy, rustfmt | |
- name: Rustfmt | |
run: cargo fmt -- --check | |
- name: Clippy | |
continue-on-error: ${{ matrix.toolchain == 'nightly' }} | |
run: cargo clippy --workspace --all-targets | |
- name: Check (internal debug) | |
run: cargo check | |
env: | |
RUSTFLAGS: --deny warnings --cfg internal_debug | |
# --------------------------------------------------------------------------- | |
# Test | |
# --------------------------------------------------------------------------- | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: extractions/setup-crate@v1 | |
with: | |
owner: taiki-e | |
name: cargo-hack | |
- name: Check (feature powerset) | |
run: cargo hack test --feature-powerset --depth 2 --lib --tests | |
# --------------------------------------------------------------------------- | |
# MSRV | |
# --------------------------------------------------------------------------- | |
msrv: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/[email protected] | |
- name: Check (no filters) | |
run: cargo check --no-default-features --features serde,unicode | |
- uses: dtolnay/[email protected] | |
- name: Test | |
run: cargo test | |
env: | |
RUSTFLAGS: --deny warnings | |
# --------------------------------------------------------------------------- | |
# Check README | |
# --------------------------------------------------------------------------- | |
readme: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install cargo-onedoc | |
run: cargo install cargo-onedoc --locked | |
- name: Check README | |
run: cargo onedoc --check | |
# --------------------------------------------------------------------------- | |
# Check version against tag | |
# --------------------------------------------------------------------------- | |
check-version: | |
needs: [lint, test, msrv, readme] | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Calculate version from tag | |
id: version | |
run: echo "::set-output name=value::${GITHUB_REF#refs/tags/}" | |
- name: Check tag against package version | |
run: grep '^version = "${{ steps.version.outputs.value }}"$' Cargo.toml | |
# --------------------------------------------------------------------------- | |
# Publish to Crates.io | |
# --------------------------------------------------------------------------- | |
publish: | |
needs: check-version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Publish | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} | |
run: cargo publish |