Skip to content

Adding notification webhook structure #281

Adding notification webhook structure

Adding notification webhook structure #281

Workflow file for this run

on: [pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Lint
run: |
go get golang.org/x/lint/golint
~/go/bin/golint -set_exit_status
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic