Skip to content

feature: api refactoring improving use of generics #17

feature: api refactoring improving use of generics

feature: api refactoring improving use of generics #17

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go: ['1.18']
env:
VERBOSE: 1
GOFLAGS: -mod=readonly
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -cover ./...