Skip to content

Bump Go version to 1.23 and update GitHub Actions (#184) #66

Bump Go version to 1.23 and update GitHub Actions (#184)

Bump Go version to 1.23 and update GitHub Actions (#184) #66

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
id: go
- name: Build
run: make test
- name: Test with coverage
run: make coverage
- name: Upload coverage reports to Codecov
run: |
# Replace `linux` below with the appropriate OS
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}