Makes some progress toward replacing ID endpoint #1033
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: Build Track Setup | |
on: | |
push: | |
branches: | |
- "**" | |
paths: | |
- 'setup/**' | |
jobs: | |
build-kots: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
go-version: '^1.16.3' | |
- name: setup env | |
run: | | |
echo "GOPATH=$(go env GOPATH)" >> $GITHUB_ENV | |
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH | |
shell: bash | |
- uses: actions/checkout@v2 | |
- run: make test | |
- run: make install |