chore(deps): bump the cargo-deps group with 10 updates #175
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: 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/[email protected] | |
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 |