Skip to content

Issue 19

Issue 19 #43

Workflow file for this run

name: Test
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
GO111MODULE: on
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19.13
- name: Install dependencies
run: |
go get .
- name: Install tools
run: |
go install github.com/golang/mock/[email protected]
- name: Generate mocks
run: |
./gen.sh
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...