Skip to content

Upgrade Go to 1.26 #100

Upgrade Go to 1.26

Upgrade Go to 1.26 #100

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v7
with:
go-version: "1.26"
- name: Checkout repo
uses: actions/checkout@v7
- name: Lint code
uses: golangci/golangci-lint-action@v9
- name: Run tests
run: make test