Add format workflow for auth

This commit is contained in:
Zoe Roux 2025-05-19 13:59:27 +02:00
parent 418eaa67f0
commit 69577d8806
No known key found for this signature in database

View File

@ -71,3 +71,15 @@ jobs:
- name: Run go fmt
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
auth:
name: "Lint auth"
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./auth
steps:
- uses: actions/checkout@v4
- name: Run go fmt
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi