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