Part of the fix to make xml mode more like listener mode #37
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: Package Test Publish | |
on: push | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
jobs: | |
Package_For_PIP: | |
uses: ./.github/workflows/Package.yaml | |
Regression_Tests: | |
needs: | |
- Package_For_PIP | |
uses: ./.github/workflows/Regression_Tests.yaml | |
Publish_Package: | |
needs: | |
- Package_For_PIP | |
- Regression_Tests | |
uses: ./.github/workflows/Publish.yaml |