Skip to content

build(deps): Bump the ci-dependencies group with 1 update #170

build(deps): Bump the ci-dependencies group with 1 update

build(deps): Bump the ci-dependencies group with 1 update #170

Workflow file for this run

name: "Rust CI"
on:
push:
branches:
- main
pull_request:
jobs:
lint:
uses: darbiadev/.github/.github/workflows/rust-lint.yaml@f185cc076161b47921c6fb6da4c1fd5e40b50bff # v3.0.0
clippy:
needs: lint
uses: darbiadev/.github/.github/workflows/rust-clippy.yaml@f185cc076161b47921c6fb6da4c1fd5e40b50bff # v3.0.0
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 # v3.0.0
with:
os: ${{ matrix.triple.os }}
target: ${{ matrix.triple.target }}