Release #1
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
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
name: Release | |
env: | |
CARGO_TERM_COLOR: "always" | |
RUSTFLAGS: "-D warnings" | |
jobs: | |
feature_powerset: | |
name: cargo check feature-powerset | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install toolchain | |
run: rustup toolchain install stable --no-self-update --profile minimal | |
- name: Install cargo hack | |
uses: taiki-e/install-action@cargo-hack | |
- uses: Swatinem/rust-cache@v2 | |
- name: cargo check feature-powerset | |
run: | | |
cargo hack check --manifest-path=compact_str/Cargo.toml --feature-powerset --optional-deps |