Merge pull request #82 from multiformats/dependabot/cargo/env_logger-… #234
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: | |
build: | |
name: Build | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
toolchain: [stable] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Cache Dependencies & Build Outputs | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install Rust Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.toolchain }} | |
components: rustfmt, clippy | |
- name: Check Code Format | |
run: cargo fmt --all -- --check | |
shell: bash | |
- name: Code Lint | |
run: cargo clippy --all-targets --all-features --workspace -- -D warnings | |
shell: bash | |
- name: Test | |
run: cargo test --all-features --workspace | |
shell: bash | |
ensure_no_std: | |
name: Ensure no_std | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Install Rust Toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: thumbv6m-none-eabi | |
- name: Build | |
run: cargo build --no-default-features --target thumbv6m-none-eabi | |
shell: bash | |
coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4 | |
- name: Install Rust Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Generate Code Coverage | |
run: | | |
cargo install cargo-tarpaulin | |
cargo tarpaulin --all-features --out Xml | |
shell: bash | |
- name: Upload Code Coverage | |
uses: codecov/codecov-action@v4 |