Skip to content

Merge pull request #10 from Selflocking/patch-1 #57

Merge pull request #10 from Selflocking/patch-1

Merge pull request #10 from Selflocking/patch-1 #57

Workflow file for this run

name: Main
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: [ 1.14, 1.15, 1.16 ]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run go test
run: make test