Skip to content

Merge pull request #88 from kozmod/feature/86_community_standards #431

Merge pull request #88 from kozmod/feature/86_community_standards

Merge pull request #88 from kozmod/feature/86_community_standards #431

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.6
- name: Test
run: go test -v ./... -cover -coverprofile cover.out && go tool cover -func cover.out
- name: Build
run: go build -v ./...