Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Bump github.com/stretchr/testify in the go-modules-updates group #41

Bump github.com/stretchr/testify in the go-modules-updates group

Bump github.com/stretchr/testify in the go-modules-updates group #41

Workflow file for this run

name: CI test
on:
push:
branches:
paths-ignore:
- 'LICENSE'
- 'README.md'
pull_request:
paths-ignore:
- 'LICENSE'
- 'README.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install go
uses: actions/setup-go@v3
with:
go-version: "1.22"
- name: build and test
run: |
go test -race -timeout=60s -covermode=atomic -coverprofile=$GITHUB_WORKSPACE/profile.cov ./...
go build -race ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: submit coverage
run: |
go install github.com/mattn/goveralls@latest
goveralls -service="github" -coverprofile=$GITHUB_WORKSPACE/profile.cov
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}