Test 008-Cavity #11
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: Test 008-Cavity | |
| on: | |
| workflow_run: | |
| workflows: [ "SAD Docker Build" ] | |
| types: [ completed ] | |
| schedule: | |
| - cron: '0 2 * * *' # daily at 02:00 UTC | |
| workflow_dispatch: {} | |
| permissions: | |
| contents: read | |
| packages: read | |
| concurrency: | |
| group: test-008-cavi-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| drift: | |
| # if triggered by workflow_run, only run when rebuild succeeded | |
| if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.conclusion == 'success' }} | |
| uses: ./.github/workflows/_test_template.yml | |
| with: | |
| pull_tag: latest | |
| test_files: | | |
| # List the relevant tests here (exact paths) | |
| tests/test_008_cavi.py | |
| secrets: inherit |