Skip to content

chore(deps): update golang to 1.20 #46

chore(deps): update golang to 1.20

chore(deps): update golang to 1.20 #46

Workflow file for this run

name: Go
on:
push: {}
pull_request: {}
jobs:
test:
strategy:
matrix:
version: [1.20, 1.21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.version }}
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...