github actions: add linting and releasing jobs

This commit is contained in:
lconsuegra 2021-01-07 11:51:17 +01:00
parent 34f1fe6017
commit 5d5c586337
2 changed files with 44 additions and 0 deletions

15
.github/workflows/golangci-lint.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: golangci-lint
on:
push:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.29

29
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: goreleaser
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.13
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}