Skip to content

Commit

Permalink
fix go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lqs committed Nov 19, 2024
1 parent 03900ed commit bec7ef3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:

build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21', '1.22', '1.23' ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: 1.19
go-version: ${{ matrix.go-version }}

- name: Build
run: go mod init github.com/lqs/grpcmix && go get -u && go build -v ./...
Expand Down

0 comments on commit bec7ef3

Please sign in to comment.