name: Linter
on:
push:
branches:
pull_request:
branches:
workflow_dispatch:
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Check formatting
- name: Run fmt
run: cargo fmt --check
# Lint all the things
- name: Run clippy
run: cargo clippy --all-features