1 Commits
Author SHA1 Message Date
alu 94f26ebee2 add static analysis action
ProxmoxAAS-Dashboard Go Static Analysis Check / lint-check (push) Failing after 3s
ProxmoxAAS-Dashboard Code Style Check / lint-check (push) Successful in 13s
2026-07-29 17:57:32 +00:00
2 changed files with 6 additions and 8 deletions
+3 -5
View File
@@ -11,13 +11,11 @@ jobs:
steps: steps:
- name: Check Out Repository - name: Check Out Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
submodules: "true"
- name: Initialize Runner - name: Initialize Runner
uses: actions/setup-go@v7 uses: actions/setup-go@v7
with: with:
go-version-file: "go.mod" go-version-file: 'go.mod'
- name: Initialize Go - name: Initialize Go
run: make build-web && go get . run: make build-web && go get .
@@ -29,5 +27,5 @@ jobs:
- name: Verify Static Analysis - name: Verify Static Analysis
if: > if: >
steps.static_govet.outcome != "success" steps.static_govet.outcome != 'success'
run: exit 1 run: exit 1
+3 -3
View File
@@ -50,7 +50,7 @@ jobs:
- name: Verify Linters - name: Verify Linters
if: > if: >
steps.html_lint.outcome != "success" || steps.html_lint.outcome != 'success' ||
steps.style_lint.outcome != "success" || steps.style_lint.outcome != 'success' ||
steps.js_lint.outcome != "success" steps.js_lint.outcome != 'success'
run: exit 1 run: exit 1