fix: allow parsing of role assignment value at auth scope [IAC-3033] #5
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: Terraform Schema Linting | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
paths: | |
- '.github/workflows/tflint.yaml' | |
- 'vendor/**' | |
- '**.go' | |
concurrency: | |
group: 'tflint-${{ github.head_ref }}' | |
cancel-in-progress: true | |
jobs: | |
tflint: | |
runs-on: ubuntu-latest | |
if: false # skip until https://github.com/bflad/tfproviderlint/issues/255 is fixed | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: ./.go-version | |
- run: bash scripts/gogetcookie.sh | |
- run: make tools | |
- run: make tflint |