summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2021-03-10 22:31:41 -0500
committerMike Frysinger <vapier@google.com>2021-04-01 14:57:05 +0000
commitbeea5de84297518634de48b20961efa68a57d797 (patch)
tree53fc31b871b5ffff87eaca0f0f4d210168a073ba /.github/workflows
parentbfbcfd904592a2f61e11a12eec281102230281d6 (diff)
downloadgit-repo-beea5de84297518634de48b20961efa68a57d797.tar.gz
tox: enable python 3.5 & 3.9 testing
We still support Python 3.5, so make sure it keeps working. Change-Id: I150158a656b26de6d733316a68a2cbb8b5b99716 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/299625 Reviewed-by: Michael Mortensen <mmortensen@google.com> Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml
index 701b4fd2..ec6f3791 100644
--- a/.github/workflows/test-ci.yml
+++ b/.github/workflows/test-ci.yml
@@ -14,7 +14,7 @@ jobs:
14 fail-fast: false 14 fail-fast: false
15 matrix: 15 matrix:
16 os: [ubuntu-latest, macos-latest, windows-latest] 16 os: [ubuntu-latest, macos-latest, windows-latest]
17 python-version: [3.6, 3.7, 3.8] 17 python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
18 runs-on: ${{ matrix.os }} 18 runs-on: ${{ matrix.os }}
19 19
20 steps: 20 steps: