Skip to content

chore: upgrade to go v1.22 #48

chore: upgrade to go v1.22

chore: upgrade to go v1.22 #48

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
tags: [ v* ]
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
strategy:
matrix:
go-version: [oldstable, stable]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v4
- name: Run tests with race detector
run: go test -count=1 -race ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest