Skip to content

Update version of Golang to 1.22.1 #38

Update version of Golang to 1.22.1

Update version of Golang to 1.22.1 #38

Workflow file for this run

name: CI
on:
pull_request:
branches:
- "**"
push:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.22.1
- run: go build
- run: go test ./...