Skip to content

Bump the Go version in CI #18

Bump the Go version in CI

Bump the Go version in CI #18

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.21.x"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...