Skip to content

add NewLocalPartyWithAutoKDD method to perform automatic KDD preparat… #21

add NewLocalPartyWithAutoKDD method to perform automatic KDD preparat…

add NewLocalPartyWithAutoKDD method to perform automatic KDD preparat… #21

Workflow file for this run

name: Go Test
on:
push:
branches:
- master
- release/*
pull_request:
branches:
- master
jobs:
build:
name: Test
runs-on: macOS-latest
steps:
- name: Set up Go 1.22
uses: actions/setup-go@v3
with:
go-version: 1.22.2
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Clean dependencies
run: go clean --modcache
- name: Get dependencies
run: go mod tidy
- name: Run Tests
run: make test_unit_race