Skip to content

Bump actions/checkout from 5 to 6 #112

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #112

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: '1.20'
cache: true
- uses: golangci/golangci-lint-action@v6
- run: go build -v ./...
- name: Test and Generate Coverage
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload Coverage Report
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}