Skip to content

Fixed goreleaser

Fixed goreleaser #333

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
tests:
name: Tests and code coverage
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Checkout code
uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: run all tests and generate coverage
run: go test -v -mod=readonly -timeout 30m -coverprofile=coverage.txt -tags='norace' -covermode=atomic `go list ./... | grep -v simapp`
if: env.GIT_DIFF
- name: Upload codecov report
uses: codecov/[email protected]
with:
file: coverage.txt
if: env.GIT_DIFF