Bump github.com/nats-io/nats-server/v2 from 2.7.4 to 2.9.23 #89
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch build | |
on: | |
push: | |
branches-ignore: | |
- master | |
- 'test-*' | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
go-version: [1.18] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Cache go modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('go.sum') }} | |
restore-keys: ${{ runner.os }}-go- | |
- name: Install windows build helpers | |
if: startsWith(matrix.os, 'windows') | |
run: choco install mingw | |
- name: Get GOCACHE | |
shell: bash | |
run: go run github.com/erkkah/bygg gocache >> $GITHUB_ENV | |
- name: Cache go build cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.GOCACHE }} | |
key: ${{ runner.os }}-gocache-${{ hashFiles('go.sum') }} | |
restore-keys: ${{ runner.os }}-gocache- | |
- name: Build | |
run: go generate | |
- name: Test | |
run: go run github.com/erkkah/bygg test |