name: CI on: push: branches: [main] pull_request: branches: [main] jobs: build-and-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version-file: 'go.mod' cache: false - name: Vet run: make vet env: GOPRIVATE: git.marketally.com - name: Build run: make build env: GOPRIVATE: git.marketally.com - name: Test run: make test env: GOPRIVATE: git.marketally.com