poc of supervisord integration #27
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
name: Run Tests | |
on: | |
push: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.15 | |
- name: Install Ginkgo | |
run: go get github.com/onsi/ginkgo/[email protected] | |
- name: Build Binaries | |
run: make binaries | |
- name: Run Unit Tests | |
run: make test |