Skip to content

Updated CI to use Go 1.20 #677

Updated CI to use Go 1.20

Updated CI to use Go 1.20 #677

Workflow file for this run

name: GitHub Actions CI
on: push
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
go: [ '1.20' ]
name: Go ${{ matrix.go }} CI test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- run: go version
- run: make build
- run: make test