Skip to content

Go Repord Card badge added. #131

Go Repord Card badge added.

Go Repord Card badge added. #131

Workflow file for this run

name: Unittests
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.18', '1.19' ]
name: Setup Go ${{ matrix.go }} environment
steps:
- uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Unittests
run: go test -v -cover ./...