Skip to content

slicetools.Batch (#35) #137

slicetools.Batch (#35)

slicetools.Batch (#35) #137

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
name: "Tests"
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: go.mod
- name: Run unit tests
run: |
go install gotest.tools/[email protected]
gotestsum --format github-actions
env:
RICHGO_FORCE_COLOR: 1
- name: golangci-lint
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
with:
version: v2.4
args: --issues-exit-code=1 --timeout 10m
only-new-issues: false