mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
# Qual: Add dependencies between workflows Run costly workflows only after a few workflows succeed (pre-commit, phan).
17 lines
345 B
Markdown
17 lines
345 B
Markdown
# Workflow run order
|
|
|
|
To reduce run minutes, the following order is put in place:
|
|
|
|
On PR & Merge, always run:
|
|
|
|
- pre-commit;
|
|
- phan.
|
|
|
|
When both succeed, start:
|
|
|
|
- phpstan;
|
|
- Windows-ci;
|
|
- travis.
|
|
|
|
See https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-a-workflow-based-on-the-conclusion-of-another-workflow
|