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