test(k8s): fix naming + pn error in nightly tests (#2511) #8035
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: Run tfproviderlint | |
on: | |
pull_request: | |
push: | |
merge_group: | |
jobs: | |
tfproviderlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- name: Install tfproviderlint | |
run: go install github.com/bflad/tfproviderlint/cmd/tfproviderlint@latest | |
- name: Run tfproviderlint | |
run: tfproviderlint -R014=false -AT001.ignored-filename-suffixes=_data_source_test.go ./... | |
tfproviderdocs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- uses: hashicorp/setup-terraform@v3 | |
- run: go install github.com/bflad/tfproviderdocs@latest | |
- run: tfproviderdocs check -provider-name scaleway -enable-contents-check |