Skip to content

Commit

Permalink
qa-tests: execute qa-tests on every commit to the 3.x branch (#13783)
Browse files Browse the repository at this point in the history
Schedule some QA tests to run on every commit to the 3.x branch
  • Loading branch information
mriccobene authored Feb 13, 2025
1 parent a9d9bbb commit 7d45903
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/qa-clean-exit-block-downloading.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - Clean exit (block downloading)

on:
push:
branches:
- 'release/3.*'
schedule:
- cron: '0 8 * * 1-6' # Run every day at 08:00 AM UTC except Sunday
workflow_dispatch: # Run manually
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/qa-rpc-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ on:
push:
branches:
- main
- 'release/3.*'
pull_request:
branches:
- main
- 'release/3.*'
types:
- opened
- reopened
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qa-rpc-performance-tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - RPC Performance Tests

on:
push:
branches:
- 'release/3.*'
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # Run on Sunday at 00:00 AM UTC
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qa-snap-download.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - Snapshot Download

on:
push:
branches:
- 'release/3.*'
schedule:
- cron: '0 20 * * 1-6' # Run every night at 20:00 (08:00 PM) UTC except Sunday
workflow_dispatch: # Run manually
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qa-sync-from-scratch-minimal-node.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - Sync from scratch (minimal node)

on:
push:
branches:
- 'release/3.*'
schedule:
- cron: '0 0 * * *' # Run every night at 00:00 AM UTC
workflow_dispatch: # Run manually
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qa-tip-tracking-gnosis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - Tip tracking (Gnosis)

on:
push:
branches:
- 'release/3.*'
schedule:
- cron: '0 0 * * 1-6' # Run every night at 00:00 AM UTC except Sunday
workflow_dispatch: # Run manually
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qa-tip-tracking-polygon.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - Tip tracking (Polygon)

on:
push:
branches:
- 'release/3.*'
schedule:
- cron: '0 0 * * 1-6' # Run every night at 00:00 AM UTC except Sunday
workflow_dispatch: # Run manually
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/qa-tip-tracking.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: QA - Tip tracking

on:
push:
branches:
- 'release/3.*'
schedule:
- cron: '0 20 * * 1-6' # Run every night at 08:00 PM UTC except Sunday
workflow_dispatch: # Run manually
Expand Down

0 comments on commit 7d45903

Please sign in to comment.