Skip to content

Bump the rust-dependencies group across 1 directory with 4 updates #45

Bump the rust-dependencies group across 1 directory with 4 updates

Bump the rust-dependencies group across 1 directory with 4 updates #45

Workflow file for this run

name: Rust CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
pre-commit:
uses: darbiadev/.github/.github/workflows/generic-precommit.yaml@main
lint:
needs: pre-commit
uses: darbiadev/.github/.github/workflows/rust-lint.yaml@main
clippy:
needs: lint
uses: darbiadev/.github/.github/workflows/rust-clippy.yaml@main
test:
needs: clippy
strategy:
matrix:
triple:
- {
os: "ubuntu-latest",
target: "x86_64-unknown-linux-gnu",
}
- {
os: "macOS-latest",
target: "x86_64-apple-darwin",
}
- {
os: "windows-latest",
target: "x86_64-pc-windows-msvc",
}
uses: darbiadev/.github/.github/workflows/rust-test.yaml@main
with:
os: ${{ matrix.triple.os }}
target: ${{ matrix.triple.target }}