mirror of
https://github.com/SwingbyProtocol/tss-lib.git
synced 2026-01-10 14:28:20 -05:00
32 lines
492 B
YAML
32 lines
492 B
YAML
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.16
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.16
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Get dependencies
|
|
run: go get -v -t -d ./...
|
|
|
|
- name: Run Tests
|
|
run: make test_unit
|
|
|