name: Build and test on: [push, pull_request] jobs: build: name: Build and test runs-on: ubuntu-latest steps: - name: Set up Go 1.x uses: actions/setup-go@v2 with: go-version: ^1.18 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Build run: go build -v ./bin/stitch - name: Test run: go test -v ./bin/stitch