Skip to content

Setup-go action updated #133

Setup-go action updated

Setup-go action updated #133

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@v4.1.3
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Unittests
run: go test -v -cover ./...