File tree Expand file tree Collapse file tree 3 files changed +26
-67
lines changed
Expand file tree Collapse file tree 3 files changed +26
-67
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Build and test
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+ strategy :
10+ matrix :
11+ go-version : [ '1.24.x', '1.25.x' ]
12+
13+ steps :
14+ - uses : actions/checkout@v5
15+ - name : Setup Go
16+ uses : actions/setup-go@v5
17+ with :
18+ go-version : ${{ matrix.go-version }}
19+ - name : Install dependencies
20+ run : go get ./...
21+ - name : Build binary
22+ run : make
23+ - name : Build WASM binary
24+ run : make wasm
25+ - name : Test with Go
26+ run : make test
Original file line number Diff line number Diff line change 2525 with :
2626 go-version-file : ' go.mod'
2727 cache : true
28- - name : Import GPG key
29- uses : crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
30- id : import_gpg
31- with :
32- gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
33- passphrase : ${{ secrets.PASSPHRASE }}
3428 - name : Run GoReleaser
3529 uses : goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0
3630 with :
You can’t perform that action at this time.
0 commit comments