Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Publish the project #15

Publish the project

Publish the project #15

Workflow file for this run

name: Unit-tests
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '>=1.20.0'
- name: Try build
run: go build -v ./cmd/... ./pkg/...
- name: Run unit-tests
run: go test -race -v ./cmd/... ./pkg/...