chore(deps): bump the cargo-deps group with 10 updates #204
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: CI (debug builds) workflow | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - "Cargo.*" | |
| - 'src/**' | |
| pull_request: | |
| paths: | |
| - "Cargo.*" | |
| - 'src/**' | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| rust-channel: | |
| - stable | |
| cpu-target: | |
| - x86_64-unknown-linux-musl | |
| - aarch64-unknown-linux-musl | |
| - armv7-unknown-linux-musleabi | |
| - armv7-unknown-linux-musleabihf | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cache Rust assets | |
| id: rust-cache | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Configure Rust toolchain | |
| if: steps.rust-cache.outputs.cache-hit != 'true' | |
| uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.rust-channel }} | |
| default: true | |
| override: true | |
| target: ${{ matrix.cpu-target }} | |
| profile: minimal | |
| - name: Install Cross | |
| uses: actions-rs/install@v0.1 | |
| with: | |
| crate: cross | |
| version: latest | |
| - name: Build project in debug mode | |
| uses: actions-rs/cargo@v1 | |
| with: | |
| command: build | |
| args: >- | |
| --all --locked --verbose --target=${{ matrix.cpu-target }} | |
| use-cross: true |