Skip to content

add README.md

add README.md #1

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
build:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: '^1.20'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
run: go test -v .