fixes #28 where the New() function for creating the time struct did n… #11
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |