Skip to content

Merge pull request #9 from argentumcode/feature/support-custom-alert-… #27

Merge pull request #9 from argentumcode/feature/support-custom-alert-…

Merge pull request #9 from argentumcode/feature/support-custom-alert-… #27

Workflow file for this run

name: Lint / Check Build
on:
push:
jobs:
golangci:
name: Lint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
with:
version: v1.54.2
build:
name: Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
- run: go build
- run: go test -v
- name: Check git repository clean
run: git diff --exit-code