Skip to content

Merge pull request #1 from iamwavecut/dependabot/go_modules/github.co… #31

Merge pull request #1 from iamwavecut/dependabot/go_modules/github.co…

Merge pull request #1 from iamwavecut/dependabot/go_modules/github.co… #31

Workflow file for this run

on:
push:
pull_request:
name: Test and release
jobs:
test:
strategy:
matrix:
go-version: [ 1.19.x ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
~\AppData\Local\go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- run: go test -race ./...
release:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Bump the version on main push
uses: hennejg/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: "main"