Skip to content

Commit

Permalink
test: run advanced tests nightly to detect breakages
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera committed Apr 22, 2024
1 parent a124ffb commit 4202b23
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/execute_advanced_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ on:
type: boolean
required: false
default: false
schedule:
# run at midnight UTC daily
- cron: "0 0 * * *"

jobs:
e2e-admin-tests:
if: ${{ github.event.inputs.e2e-admin-tests == 'true' }}
if: ${{ github.event.inputs.e2e-admin-tests == 'true' || github.event_name == 'schedule' }}
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 120
steps:
Expand Down Expand Up @@ -65,7 +68,7 @@ jobs:
done
e2e-upgrade-test:
if: ${{ github.event.inputs.e2e-upgrade-test == 'true' }}
if: ${{ github.event.inputs.e2e-upgrade-test == 'true' || github.event_name == 'schedule' }}
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 120
steps:
Expand Down

0 comments on commit 4202b23

Please sign in to comment.