Skip to content
This repository was archived by the owner on May 11, 2025. It is now read-only.

fix(actions): move linting to Clippy #3

fix(actions): move linting to Clippy

fix(actions): move linting to Clippy #3

Workflow file for this run

name: "Lint"
on:
push:
pull_request:
permissions:
checks: write
contents: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Setup Rust"
uses: hecrj/setup-rust-action@v2
with:
rust-version: stable
- name: "Lint code"
run: cargo clippy