Skip to content

chore: release 0.47.1 #200

chore: release 0.47.1

chore: release 0.47.1 #200

Workflow file for this run

name: tests
on:
pull_request:
branches: [ main ]
jobs:
build:
if: "!startsWith(github.head_ref, 'release-')"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: go build -v ./...
lint:
if: "!startsWith(github.head_ref, 'release-')"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: brokeyourbike/[email protected]
with:
mockery-version: '2.42.0'
- run: make mock
- uses: dominikh/staticcheck-action@v1
with:
version: '2023.1.6'
install-go: false
unit:
if: "!startsWith(github.head_ref, 'release-')"
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: brokeyourbike/[email protected]
with:
mockery-version: '2.42.0'
- run: make mock
- run: make test