From e5b184243241f91063d9adb3af8ff0d596b99f8b Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 19 May 2025 13:59:27 +0200 Subject: [PATCH] Add format workflow for auth --- .github/workflows/coding-style.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/coding-style.yml b/.github/workflows/coding-style.yml index 79f7581f..24767c0a 100644 --- a/.github/workflows/coding-style.yml +++ b/.github/workflows/coding-style.yml @@ -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