Acceptance Tests in LPG1 #1293
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
# The dedicated workflow for the whole acceptance test-suite. Only run on | |
# schedule or manually, but never with any customization. | |
name: Acceptance Tests in LPG1 | |
on: | |
# Scheduled tests (UTC) | |
schedule: | |
- cron: '0 18 * * *' | |
# Manual execution through the UI by collaborators | |
workflow_dispatch: | |
jobs: | |
acceptance-tests-in-lpg1: | |
uses: ./.github/workflows/run-acceptance-tests.yml | |
with: | |
zone: lpg1 | |
secrets: | |
api_token: ${{ secrets.CLOUDSCALE_API_TOKEN_AT_LPG1 }} |