Skip to content

fixes #28 where the New() function for creating the time struct did n… #10

fixes #28 where the New() function for creating the time struct did n…

fixes #28 where the New() function for creating the time struct did n… #10

Workflow file for this run

on: [push, pull_request]
name: Test and Build
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.16"
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: go build
- name: Test and Coverage
run: go test ./... -v -covermode=count