backive/.github/workflows/go.yml

36 lines
808 B
YAML
Raw Normal View History

2021-10-12 19:56:36 +02:00
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
2022-08-14 22:50:44 +02:00
runs-on: ubuntu-desktop-latest
2021-10-12 19:56:36 +02:00
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
2022-08-14 21:45:19 +02:00
go-version: 1.19
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v2.7.0
with:
install-only: true
2021-10-12 19:56:36 +02:00
- name: Go-linter
# You may pin to the exact commit or the version.
# uses: Jerome1337/golint-action@c5d17206a0a436bbf1edb91e314ed084f7c57589
uses: Jerome1337/golint-action@v1.0.2
#with:
# Path used by golint command
# golint-path: # optional, default is ./...
- name: Build
run: goreleaser build --snapshot --rm-dist
2021-10-12 19:56:36 +02:00
- name: Test
2022-01-30 00:20:35 +01:00
run: go test -v -cover