From 17c6bf8d50a5721606fe0f123c4cf3bb1bc9d317 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 13 May 2026 14:18:21 +0000 Subject: [PATCH] Add test lint action --- .forgejo/workflows/golint.yaml | 9 +++++++++ .../{PublicReportCard.vue => CardPublicReport.vue} | 0 2 files changed, 9 insertions(+) create mode 100644 .forgejo/workflows/golint.yaml rename ts/components/{PublicReportCard.vue => CardPublicReport.vue} (100%) diff --git a/.forgejo/workflows/golint.yaml b/.forgejo/workflows/golint.yaml new file mode 100644 index 00000000..4fe85041 --- /dev/null +++ b/.forgejo/workflows/golint.yaml @@ -0,0 +1,9 @@ +on: [push] +jobs: + golint: + runs-on: nixos + steps: + - name: checkout code + uses: actions/checkout@v4 + - name: golangci-lint + run: golangci-lint run diff --git a/ts/components/PublicReportCard.vue b/ts/components/CardPublicReport.vue similarity index 100% rename from ts/components/PublicReportCard.vue rename to ts/components/CardPublicReport.vue