Skip to content

Commit f8ae03f

Browse files
committed
Run static check in CI
Signed-off-by: Yacov Manevich <[email protected]>
1 parent 961ef24 commit f8ae03f

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/staticcheck.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# This workflow will build a golang project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
3+
4+
name: "Static Check"
5+
on: ["pull_request"]
6+
7+
jobs:
8+
static_check:
9+
name: "Run Static check"
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
with:
14+
fetch-depth: 1
15+
- uses: dominikh/[email protected]
16+
with:
17+
version: "2022.1.1"
18+
19+

0 commit comments

Comments
 (0)