gapr/.gitea/workflows/go.yaml
Peter Kurfer 59ae8a9c6f
All checks were successful
Go build / build (1.20.x) (push) Successful in 50s
Go build / build (1.21.x) (push) Successful in 44s
Renovate / renovate (push) Successful in 23s
ci: switch to Gitea actions
2023-11-17 10:14:30 +01:00

38 lines
930 B
YAML

name: Go build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
go-version: [ 1.20.x, 1.21.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
lfs: 'true'
fetch-tags: 'true'
- name: Setup Go
uses: actions/setup-go@v4
with:
# Semantic version range syntax or exact version of Go
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
env:
CGO_ENABLED: "0"
GOMEMLIMIT: "1150MiB"
- name: Install gotestsum
run: go install gotest.tools/gotestsum@latest
- name: Run tests
run: gotestsum -f pkgname-and-test-fails -- -race -shuffle=on ./...
env:
CGO_ENABLED: "1"
GOMEMLIMIT: "150MiB"