Skip to content

Merge pull request #22 from hermannm/remove-dependencies #77

Merge pull request #22 from hermannm/remove-dependencies

Merge pull request #22 from hermannm/remove-dependencies #77

Workflow file for this run

name: Go
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v .