Skip to content

chore: Go version bump and other maintenance chores (#46) #47

chore: Go version bump and other maintenance chores (#46)

chore: Go version bump and other maintenance chores (#46) #47

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test (race)
run: make coverage
- name: Coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
- name: Lint
run: make lint