feat: automatically generate context ignore paths

This commit is contained in:
Stavros
2026-06-30 17:56:48 +03:00
parent ffafb5bff5
commit 1fcac1b2f7
24 changed files with 189 additions and 34 deletions
+3 -3
View File
@@ -36,9 +36,9 @@ jobs:
- name: Check codegen is up to date
run: |
sqlc generate
go generate ./internal/repository/...
git diff --exit-code -- internal/repository/
git status --porcelain -- internal/repository/ | grep -q . && echo "untracked files in internal/repository/" && exit 1 || true
go generate ./...
git diff --exit-code
git status --porcelain | grep -q . && echo "untracked files in git diff" && exit 1 || true
- name: Install frontend dependencies
working-directory: ./frontend