Skip to content

chore: update minimum Go version to 1.20 in go.mod #5

chore: update minimum Go version to 1.20 in go.mod

chore: update minimum Go version to 1.20 in go.mod #5

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.20.x]
steps:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Test
run: go test -race ./...