Skip to content

Bump actions/checkout from 4 to 6 #332

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #332

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 2
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: test
run: go mod tidy -v && go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
- name: codecov
uses: codecov/codecov-action@v5.4.3
with:
token: ${{ secrets.CODECOV_TOKEN }}