fix schema 1.12 to correctly allow the import block to use for_each #1891
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| GOPROXY: https://proxy.golang.org/ | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Set up Go | |
| uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0 | |
| with: | |
| go-version-file: ".go-version" | |
| - name: Go mod download | |
| run: go mod download -x | |
| - name: Go mod verify | |
| run: go mod verify | |
| - name: Run go fmt | |
| run: go run github.com/mh-cbon/go-fmt-fail ./... | |
| - name: Run tests | |
| run: go test -cover -covermode=atomic -timeout=5m -race ./... |