bump version and changelog for v0.5.4 #37
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: "build" | |
on: | |
pull_request: | |
branches: | |
- "master" | |
push: | |
branches: | |
- "master" | |
jobs: | |
build: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- name: "checkout repository" | |
uses: "actions/checkout@v3" | |
- name: "setup go" | |
uses: "actions/setup-go@v3" | |
with: | |
go-version: "1.20" | |
- name: "make test" | |
run: "make test" | |
- name: "make build" | |
run: "make build" | |
- name: "make build (windows)" | |
run: "GOOS=windows make build" | |
- name: "make minimal" | |
run: "make minimal" |