(TFECO-7637) Raise HCL diagnostics #1500
This file contains 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@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.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 ./... |