added Status() for KV; added tests; updated NATS certs #33
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 | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.16.5' | |
- name: Start up dependencies | |
run: docker-compose up -d | |
- name: Wait for dependencies to start up | |
uses: jakejarvis/wait-action@master | |
with: | |
time: '30s' | |
- name: Test | |
run: sudo go test ./... -v |