Skip to content

Support for Default tags #27

Support for Default tags

Support for Default tags #27

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.19.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/[email protected]
- name: Get dependencies
run: go mod download
- name: Run unit tests
run: go test -v -cover ./...