name: GoCast on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: name: Build and unit test runs-on: ubuntu-latest env: - CI: 1 steps: - name: Set up Go 1.x uses: actions/setup-go@v2 with: go-version: ^1.14 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 - name: Build run: make - name: Test run: make test