Skip to content

chore: bump to go v1.22 #6

chore: bump to go v1.22

chore: bump to go v1.22 #6

Workflow file for this run

name: Test on Pull Request
on:
pull_request:
branches:
- 'main'
jobs:
test:
name: Run Go Tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.22']
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -race -v ./...