Skip to content

lint -> clippy

lint -> clippy #2

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
lint-and-test:
name: cargo lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo clippy
- run: cargo test