TT-10430: add plugin and bundle build setup (#47) #22
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: Test, Lint, Build | |
on: [push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Go ${{ matrix.go-version }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.15.x' | |
- name: Test | |
run: make test | |
- name: Lint | |
run: make lint | |
- name: Build server | |
if: always() | |
run: make build-binary | |
- name: Build cli | |
if: always() | |
run: make build-cli |