Skip to content

Upgrade to Go 1.26 + golangci-lint 2.13.1 #124

Upgrade to Go 1.26 + golangci-lint 2.13.1

Upgrade to Go 1.26 + golangci-lint 2.13.1 #124

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
check-latest: true
go-version-file: "go.mod"
- name: Display Go version
run: go version
- name: Test
run: make test
golangci-lint:
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v2.13.1
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Go
uses: actions/setup-go@v7
with:
check-latest: true
go-version-file: "go.mod"
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}