1.0 fixes, adds ability to monitor multiple servers, and future save file #91
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: pull_request | |
name: Pull Request | |
defaults: | |
run: | |
shell: powershell | |
jobs: | |
test: | |
name: test | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.17' | |
- name: Install dependencies | |
run: | | |
cd Companion | |
go mod vendor | |
- name: Build | |
shell: sh | |
run: | | |
cd Companion | |
make | |
- name: Test Companion | |
run: | | |
cd Companion | |
make test | |
- name: Test README generation | |
run: | | |
make readme |