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