Skip to content

added null checks to NewCarbonInterval #56

added null checks to NewCarbonInterval

added null checks to NewCarbonInterval #56

Workflow file for this run

on: pull_request
jobs:
test:
strategy:
matrix:
go-version: [1.16, 1.17, 1.18]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get -t ./...
- name: Test
run: go test -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to codecov
uses: codecov/codecov-action@v1