Skip to content

Merge pull request #316 from darbiadev/dependabot/github_actions/ci-d… #177

Merge pull request #316 from darbiadev/dependabot/github_actions/ci-d…

Merge pull request #316 from darbiadev/dependabot/github_actions/ci-d… #177

Workflow file for this run

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