File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ on :
2+ pull_request :
3+ paths :
4+ - ' **/*.go'
5+ - ' **/*.mod'
6+ - ' **/*.sum'
7+ - ' **/*.yml'
8+
9+ name : " Build"
10+ jobs :
11+ build :
12+ strategy :
13+ matrix :
14+ go-version : [latest, dev-latest, mod]
15+ os : [windows-latest]
16+ runs-on : ${{ matrix.os }}
17+ steps :
18+ - uses : actions/checkout@v4
19+ - uses : actions/setup-go@v6
20+ with :
21+ go-version : ${{ matrix.go-version }}
22+
23+ - name : Go version
24+ run : go version
25+ shell : bash
26+ - name : Build
27+ run : go build ./cmd/gobrew
28+ shell : bash
Original file line number Diff line number Diff line change 1212 strategy :
1313 matrix :
1414 go-version : [latest, dev-latest, mod]
15- os : [ubuntu-latest, macos-latest, windows-latest ]
15+ os : [ubuntu-latest, macos-latest]
1616 runs-on : ${{ matrix.os }}
1717 steps :
1818 - uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments