Bump self_cell from 1.0.4 to 1.1.0 #97
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: Continuous Integration | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
RUSTFLAGS: -Dwarnings | |
jobs: | |
build_and_test: | |
name: Build and test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
rust: [stable, beta, nightly] | |
steps: | |
- uses: actions/[email protected] | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust }} | |
- uses: Swatinem/[email protected] | |
with: | |
cache-all-crates: true | |
- run: cargo fetch | |
- run: cargo check --all-features | |
- run: cargo build --all-features | |
- run: cargo test --all-features | |
- run: cargo bench --all-features | |
check_fmt_and_docs: | |
name: Checking fmt, clippy, and docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- uses: Swatinem/[email protected] | |
with: | |
cache-all-crates: true | |
- run: cargo check --workspace --all-features --benches --examples --tests | |
- run: cargo clippy --workspace --all-features --benches --examples --tests -- -D warnings | |
- run: cargo fmt --check | |
- run: cargo doc --workspace --all-features --no-deps |