Skip to content

fix location subtype (#14) #63

fix location subtype (#14)

fix location subtype (#14) #63

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Build
runs-on: ubuntu-latest
steps:
- name: Download Go
uses: actions/setup-go@v2
id: go
- name: Checkout Project
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
run: go build .
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
run: go test -v .