Skip to content

Bump the rust-dependencies group with 1 update #45

Bump the rust-dependencies group with 1 update

Bump the rust-dependencies group with 1 update #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@f185cc076161b47921c6fb6da4c1fd5e40b50bff
clippy:
needs: lint
uses: darbiadev/.github/.github/workflows/rust-clippy.yaml@f185cc076161b47921c6fb6da4c1fd5e40b50bff
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@f185cc076161b47921c6fb6da4c1fd5e40b50bff
with:
os: ${{ matrix.triple.os }}
target: ${{ matrix.triple.target }}