diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 88e56b2..2e24885 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,3 +47,15 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.txt fail_ci_if_error: true + + build-cli: + name: Build CLI + runs-on: ubuntu-latest + needs: [lint] + steps: + - uses: actions/checkout@main + - uses: actions/setup-go@main + with: + go-version: '1.13' + - name: Run go build + run: go build ./cli/battlesnake