Skip to content

Update go version to 1.22 #23

Update go version to 1.22

Update go version to 1.22 #23

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.22.0
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...