There can be license-specific output lines before parameters (e.g., WLS) #502
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
# Regular QA workflow (pull requests, main branch) | |
name: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
code-quality: | |
uses: ./.github/workflows/code-quality.yml | |
python-tests: | |
uses: ./.github/workflows/python-tests.yml | |
needs: [code-quality] | |
doc-tests: | |
uses: ./.github/workflows/doc-tests.yml | |
needs: [python-tests] | |
doc-build: | |
uses: ./.github/workflows/doc-build.yml | |
needs: [python-tests] |