Skip to content
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.

Fixing tests

Fixing tests #204

Workflow file for this run

name: Test Go
on: [push]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.17.7'
id: go
- name: Check out code
uses: actions/checkout@v2
- name: Install Dependencies
env:
GOPROXY: https://proxy.golang.org,direct
run: go mod download
- name: Test
run: go test -tags unit -race ./...