Skip to content

Revert "Exit if the master server is nil" #18

Revert "Exit if the master server is nil"

Revert "Exit if the master server is nil" #18

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Make Output Directory
run: mkdir bin
- name: Build
run: go build -v -o ./bin ./...
- name: Test
run: go test -v ./...
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}
path: ./bin
if-no-files-found: error