Update README.md

This commit is contained in:
Lou Knauer
2021-08-31 15:18:06 +02:00
parent 4c51f5c613
commit 63e45960e1
4 changed files with 134 additions and 55 deletions

18
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Build & Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
- name: Checkout code
uses: actions/checkout@v2
- name: Build, Vet & Test
run: |
go build ./...
go vet ./...
go test -v ./...