Skip to content

add environment variables #31

add environment variables

add environment variables #31

Workflow file for this run

name: Go Tests
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.16
id: go
- uses: actions/checkout@v2
- name: Build
run: go build -v
- name: Test
run: go test -v ./...