Skip to content

Upgrade the version of Go to 1.24 #43

Upgrade the version of Go to 1.24

Upgrade the version of Go to 1.24 #43

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: Push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.24.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -race ./...
- name: Vet
run: go vet ./...
- name: Mod verify
run: go mod verify
- name: Staticcheck
run: |
go get honnef.co/go/tools/cmd/staticcheck
staticcheck ./...