chore(docs): Add more info on how to use arbitrary JSON/YAML scan feat #2296
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
# This workflow is used to bypass the required status checks. | |
# cf. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/troubleshooting-required-status-checks | |
name: Test | |
on: | |
push: | |
paths: | |
- '**.md' | |
- 'docs/**' | |
- 'mkdocs.yml' | |
- 'LICENSE' | |
- '.release-please-manifest.json' | |
pull_request: | |
paths: | |
- '**.md' | |
- 'docs/**' | |
- 'mkdocs.yml' | |
- 'LICENSE' | |
- '.release-please-manifest.json' | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- run: 'echo "No test required"' | |
integration: | |
name: Integration Test | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No test required"' |