github.com/GoogleCloudPlatform/terraformer@v0.8.18/.github/workflows/test.yml (about) 1 name: tests 2 3 on: 4 push: 5 branches: 6 - master 7 pull_request: 8 branches: 9 - master 10 11 jobs: 12 test: 13 strategy: 14 matrix: 15 platform: [ubuntu-latest, macos-latest, windows-latest] 16 runs-on: ${{ matrix.platform }} 17 steps: 18 - uses: actions/checkout@v2 19 - name: Install Go 20 uses: actions/setup-go@v2 21 with: 22 go-version: 1.17 23 - name: Test 24 run: go build -v && go test ./...