File tree Expand file tree Collapse file tree 3 files changed +28
-2
lines changed
Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : ' Lint Code'
3+ runs :
4+ using : " composite"
5+ steps :
6+ - uses : actions/setup-go@v5
7+ with :
8+ go-version-file : go.mod
9+ cache-dependency-path : go.sum
10+ - name : golangci-lint
11+ uses : golangci/golangci-lint-action@v6
12+ with :
13+ args : --timeout=11m
Original file line number Diff line number Diff line change 1+ ---
12name : ' Test Go Code'
23description : ' Runs tests'
34runs :
Original file line number Diff line number Diff line change 1+ ---
12name : Pre-Build Workflow
2-
33on :
44 push :
55 branches :
66 - master
77 - develop
88jobs :
99 tests :
10- runs-on : ubuntu-latest
10+ runs-on : ${{ matrix.os }}
11+ strategy :
12+ matrix :
13+ os :
14+ - ubuntu-22.04
15+ - ubuntu-24.04
16+ - windows-2019
17+ - windows-2022
18+ - windows-2025
19+ - macos-13
20+ - macos-14
21+ - macos-15
1122 steps :
1223 - uses : actions/checkout@v4
1324 - uses : ./.github/actions/test
25+ - uses : ./.github/actions/lint
You can’t perform that action at this time.
0 commit comments