Skip to content

🌱 Bump go version from 1.20 to 1.21 #127

🌱 Bump go version from 1.20 to 1.21

🌱 Bump go version from 1.20 to 1.21 #127

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- "release-*"
jobs:
ci-checks:
runs-on: ubuntu-latest
name: CI Checks
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Lint
run: go fmt ./...
- name: Static analysis
run: go vet ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...