Skip to content

ci: split rustfmt and clippy into separate jobs #1

ci: split rustfmt and clippy into separate jobs

ci: split rustfmt and clippy into separate jobs #1

Workflow file for this run

---
name: Rust Format and Clippy
on:
push:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
container:
# This could be optimized to use a smaller image
image: ghcr.io/nationalsecurityagency/seabee:build
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check