Skip to content

Try out custom action #8

Try out custom action

Try out custom action #8

Workflow file for this run

name: Rust Checks
on:
- push
- pull_request
- workflow_dispatch
jobs:
lint:
name: Clippy Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: illdefined/rust@main
with:
components: clippy
- run: cargo clippy --all-targets --all-features
check:
name: Rust Check
strategy:
matrix:
system:
- ubuntu-latest
- ubuntu-24.04-arm
- macos-15
- windows-2025
runs-on: ${{ matrix.system }}
steps:
- uses: actions/checkout@v4
- uses: illdefined/rust@main
- run: cargo check
- run: cargo test