Skip to content

14 add linting to GitHub ci #4

14 add linting to GitHub ci

14 add linting to GitHub ci #4

Workflow file for this run

---
name: rustfmt
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