Skip to content

go.mod to v2

go.mod to v2 #16

Workflow file for this run

name: Build and test
on: push
jobs:
unit-test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run unit tests
run: go test ./...