types: add Stringer implementation for List and Tuple #35
Workflow file for this run
This file contains 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
name: Go | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: 1.15 | |
- name: Get dependencies | |
run: go get -v -t -d ./... | |
- name: Run tests and generate coverage report | |
run: go test -race -coverprofile cover.out -covermode atomic ./... | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1.0.7 | |
with: | |
file: ./cover.out |