@ANS-TF-IDPS : Support IDPS gateway policy and rules #1113
This file contains hidden or 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: docs-lint | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Go | |
| uses: ./.github/actions/setup-go | |
| - name: Install Tools | |
| run: make tools | |
| - name: Docs HCL Lint | |
| run: make docs-lint | |
| - name: Docs Lint | |
| uses: DavidAnson/markdownlint-cli2-action@ce4853d43830c74c1753b39f3cf40f71c2031eb9 # v23.0.0 | |
| with: | |
| config: '.markdownlint.jsonc' | |
| globs: | | |
| docs/*.md | |
| docs/data-sources/*.md | |
| docs/guides/*.md | |
| docs/resources/*.md |