Skip to content

test commit for _inherit (#5) #10

test commit for _inherit (#5)

test commit for _inherit (#5) #10

Workflow file for this run

name: tests
on:
pull_request:
paths-ignore:
- 'README.md'
push:
paths-ignore:
- 'README.md'
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/setup-go@v2.1.3
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2.4.0
- name: Get dependencies
run: go mod download
- name: Run unit tests
run: go test -v -cover ./...