chore: add github action

main
sudo pacman -Syu 2022-11-06 18:03:37 +07:00
parent 5c4ebf7152
commit bdd3ac3715
No known key found for this signature in database
GPG Key ID: D6CB5C6C567C47B0
3 changed files with 86 additions and 0 deletions

6
.github/dependabot.yml vendored Normal file
View File

@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"

51
.github/workflows/go.yaml vendored Normal file
View File

@ -0,0 +1,51 @@
name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.19"
check-latest: true
cache: true
- run: go test -race -failfast .
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: "1.19"
check-latest: true
cache: true
- run: go build cmd/populatedb
golangci-lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.19"
check-latest: true
cache: true
- uses: golangci/golangci-lint-action@v3
with:
version: latest

29
.github/workflows/goreleaser.yaml vendored Normal file
View File

@ -0,0 +1,29 @@
name: goreleaser
on:
push:
tags:
- "*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v3
with:
go-version: "1.19"
check-latest: true
cache: true
- uses: goreleaser/goreleaser-action@v2
with:
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}