ci: use Tarpaulin Docker image #494
Workflow file for this run
This file contains hidden or 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] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| - name: Cache Dependencies & Build Outputs | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cargo | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - name: Check Code Format | |
| run: cargo fmt --all -- --check | |
| shell: bash | |
| - name: Code Lint | |
| run: cargo clippy --all-targets --all-features -- -D warnings | |
| shell: bash | |
| - name: Test --no-default-features | |
| run: cargo test --no-default-features | |
| shell: bash | |
| - name: Test | |
| run: cargo test --all-features | |
| shell: bash | |
| build-no-std: | |
| name: Build no_std | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| - name: Install Rust Toolchain | |
| run: rustup target add thumbv6m-none-eabi | |
| shell: bash | |
| - name: Build | |
| run: cargo build --no-default-features --target thumbv6m-none-eabi | |
| shell: bash | |
| build-no-std-serde: | |
| name: Build no_std, but with `serde` feature enabled | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| # `thumbv6m-none-eabi` can't be used as Serde doesn't compile there. | |
| run: cargo build --no-default-features --features serde | |
| shell: bash | |
| coverage: | |
| name: Code Coverage | |
| runs-on: ubuntu-latest | |
| container: | |
| image: xd009642/tarpaulin:0.32.8 | |
| options: --security-opt seccomp=unconfined | |
| steps: | |
| - name: Checkout Sources | |
| uses: actions/checkout@v4 | |
| - name: Generate Code Coverage | |
| run: cargo tarpaulin --all-features --out Xml | |
| - name: Upload Code Coverage | |
| uses: codecov/codecov-action@v5 |