Skip to content

Lock file maintenance #25

Lock file maintenance

Lock file maintenance #25

Workflow file for this run

name: lint
permissions:
contents: read
on:
push:
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: cargo fmt --all -- --check
run: cargo fmt --all -- --check
clippy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: cargo clippy -- -Dwarnings
run: cargo clippy -- -Dwarnings