Change backing_components_use_constraint to backing_selection_constraint #226
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: check-docs | |
on: | |
push: | |
paths: | |
- 'website/**' | |
pull_request: | |
paths: | |
- 'website/**' | |
jobs: | |
build: | |
name: Check | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Required to have tag information available | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: 'go.mod' | |
- name: Get latest released version | |
run: echo "PROVIDER_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: hclcheck | |
run: make hclcheck |