Skip to content

Upgrade to Goyave v5 #133

Upgrade to Goyave v5

Upgrade to Goyave v5 #133

Workflow file for this run

name: Test
on:
push:
branches:
- "**"
tags-ignore:
- "v*.*.*"
pull_request:
branches:
- "**"
jobs:
tests:
name: Unit and integrations tests
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: |
go test -v -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./...
- if: ${{ matrix.go == '1.20' }}
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverage.txt
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
args: --timeout 5m