diff options
author | Erik Johnston <erik@matrix.org> | 2022-09-02 14:12:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 13:12:47 +0100 |
commit | 0fdb685c2b95aa4b727f291c02821ceee6d40dad (patch) | |
tree | 820409aa53236bb7ff921858f9ae665faf463400 /.github/workflows/tests.yml | |
parent | Fix two typos with colon in headlines (#13665) (diff) | |
download | synapse-0fdb685c2b95aa4b727f291c02821ceee6d40dad.tar.xz |
Only run trial CI on all python versions on non-PRs (#13698)
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 49a010d9d8..720cb13907 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,6 +82,16 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10"] database: ["sqlite"] extras: ["all"] + is_pr: + - ${{ startsWith(github.ref, 'refs/pull/') }} + + # If we're a PR then we only test min and max python. + exclude: + - is_pr: true + python-version: 3.8 + - is_pr: true + python-version: 3.9 + include: # Newest Python without optional deps - python-version: "3.10" |