feat: support multiple DB repositories for vulnerability and Java DB #2351
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"' |