Skip to content

Add 1.19 to go_version matrix to run tests against latest go versions. #377

Add 1.19 to go_version matrix to run tests against latest go versions.

Add 1.19 to go_version matrix to run tests against latest go versions. #377

Workflow file for this run

name: All builds
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go_version: ["1.20.2", "1.19.7", "1.18.10", "1.17.13", "1.16.15"]
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3.2.0
with:
go-version: ${{ matrix.go_version }}
- run: go version
- run: ./.ci.gogenerate.sh
- run: ./.ci.gofmt.sh
- run: ./.ci.govet.sh
- run: go test -v -race ./...