Set version to 0.83.13 #645
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: Working branch CI | |
on: | |
push: | |
paths: | |
- '**' | |
- '!**.md' | |
- '!doc/**' | |
- '!**.png' | |
branches-ignore: | |
- main | |
jobs: | |
make-tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.22' | |
- uses: replicatedhq/action-install-pact@v1 | |
- name: make test | |
run: make test | |
make-build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.22' | |
- name: make build | |
run: make build |