Bumps version to 0.19.0 following community changes (#597) #81
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: Test | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: build & test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- uses: actions/checkout@v3 | |
- name: determine go cache paths | |
id: go-cache-path | |
run: | | |
echo "::set-output name=build::$(go env GOCACHE)" | |
echo "::set-output name=module::$(go env GOMODCACHE)" | |
shell: bash | |
- name: setup go cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ steps.go-cache-path.outputs.build }} | |
${{ steps.go-cache-path.outputs.module }} | |
key: ${{ runner.os }}-go-buz-cache-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-buz-cache- | |
- name: build | |
run: make build | |
- name: test | |
run: make test |