2 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index fcbd40b746..13746608d4 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -37,15 +37,18 @@ jobs:
- 'Cargo.toml'
- 'Cargo.lock'
- '.rustfmt.toml'
+ - '.github/workflows/tests.yml'
trial:
- 'synapse/**'
- 'tests/**'
- 'rust/**'
+ - '.ci/scripts/calculate_jobs.py'
- 'Cargo.toml'
- 'Cargo.lock'
- 'pyproject.toml'
- 'poetry.lock'
+ - '.github/workflows/tests.yml'
integration:
- 'synapse/**'
@@ -56,7 +59,9 @@ jobs:
- 'pyproject.toml'
- 'poetry.lock'
- 'docker/**'
+ - '.ci/**'
- 'scripts-dev/complement.sh'
+ - '.github/workflows/tests.yml'
linting:
- 'synapse/**'
@@ -70,6 +75,7 @@ jobs:
- 'mypy.ini'
- 'pyproject.toml'
- 'poetry.lock'
+ - '.github/workflows/tests.yml'
check-sampleconfig:
runs-on: ubuntu-latest
diff --git a/changelog.d/16512.misc b/changelog.d/16512.misc
new file mode 100644
index 0000000000..dcc53510c4
--- /dev/null
+++ b/changelog.d/16512.misc
@@ -0,0 +1 @@
+Run trial & integration tests in continuous integration when `.ci` directory is modified.
|