feat(ci): add a build step to check for compilation feature #142
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: Verify build | |
on: [push] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
linux: | |
name: Build on Linux | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt, clippy | |
- name: Check | |
run: cargo check | |
- name: Format | |
run: | | |
cargo fmt --all -- --check | |
cargo clippy | |
- name: Build Debug | |
run: cargo build --verbose | |
- name: Build `data-resource` with default features | |
run: cargo build -p data-resource | |
- name: Build `data-resource` with "non-cryptographic-hash" feature | |
run: cargo build -p data-resource --no-default-features --features non-cryptographic-hash | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Build Release | |
run: cargo build --verbose --release | |
windows: | |
name: Test on Windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run tests | |
run: cargo test --workspace --verbose | |
mac-intel: | |
name: Test on macOS Intel | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Run tests | |
run: cargo test --workspace --verbose |