(Galaxy) demo tests #14
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: "Galaxy demo tests" | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 6' # Runs every Saturday at 12am UTC | |
| - cron: '0 0 * * 0' # Runs every Sunday at 12am UTC | |
| jobs: | |
| build-artifact: | |
| uses: ./.github/workflows/build-artifact.yaml | |
| permissions: | |
| packages: write | |
| secrets: inherit | |
| with: | |
| version: 22.04 | |
| build-wheel: true | |
| tg-demo-tests: | |
| needs: build-artifact | |
| secrets: inherit | |
| uses: ./.github/workflows/tg-demo-tests-impl.yaml | |
| with: | |
| docker-image: ${{ needs.build-artifact.outputs.dev-docker-image }} | |
| wheel-artifact-name: ${{ needs.build-artifact.outputs.wheel-artifact-name }} | |
| build-artifact-name: ${{ needs.build-artifact.outputs.build-artifact-name }} | |
| topology: topology-6u |