Skip to content

Bump the ci-dependencies group with 1 update #46

Bump the ci-dependencies group with 1 update

Bump the ci-dependencies group with 1 update #46

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@38577afaee35510b6792495a87b07d49b5cdf387
clippy:
needs: lint
uses: darbiadev/.github/.github/workflows/rust-clippy.yaml@38577afaee35510b6792495a87b07d49b5cdf387
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@38577afaee35510b6792495a87b07d49b5cdf387
with:
os: ${{ matrix.triple.os }}
target: ${{ matrix.triple.target }}