Skip to content

fixes #28 where making time struct with New() function did not counted leap year logic #8

fixes #28 where making time struct with New() function did not counted leap year logic

fixes #28 where making time struct with New() function did not counted leap year logic #8

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