Skip to content

build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #322

build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0

build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 #322

Workflow file for this run

---
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
permissions:
contents: read
pull-requests: read
concurrency:
group: ci-${{ github.event.pull_request.head.repo.full_name }}/${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
gotest:
name: go test
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
- name: test cover
run: make testcoverfile
- name: upload coverage reports to codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.txt
if: github.event_name != 'merge_group'