Skip to content

chore: bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #118

chore: bump github.com/stretchr/testify from 1.9.0 to 1.10.0

chore: bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #118

Workflow file for this run

name: Build check
on:
pull_request:
branches:
- main
paths:
- 'go.mod'
- 'go.sum'
- 'cmd/**'
- 'pkg/**'
- 'Dockerfile'
jobs:
build:
name: Build
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up go
timeout-minutes: 5
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
args: --timeout=5m --config=.golangci.yml
- name: Unit
run: make unit
- name: Build
timeout-minutes: 10
run: make build