+ initial tests for provider using hashicorp/terraform-plugin-testing #66
Workflow file for this run
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: Linter | |
on: [pull_request] | |
jobs: | |
build: | |
name: Linter | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: super-linter/super-linter@v6.8.0 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_MARKDOWN: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
MARKDOWN_CONFIG_FILE: .markdown-lint.yml | |
FILTER_REGEX_EXCLUDE: | | |
.*\.md$| # Exclude all markdown files | |
.*test/.*| # Exclude all files in any test directory | |
.*_test\.go$| # Exclude Go test files (e.g., *_test.go) | |
.*\.json$ # Exclude all JSON files |