Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
396f1cb481 |
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user