Skip to content

Update to go1.23

Update to go1.23 #67

Workflow file for this run

on:
push:
pull_request:
types: [opened, synchronize, reopened]
name: test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: make deps
- name: Lint and test
run: make all TEST_FLAGS="-covermode=atomic -coverpkg=./... -coverprofile=coverage.txt"
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1