diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2024-10-11 16:32:20 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2024-10-11 16:34:15 +0200 |
commit | 020f1df5a4e51685227d6301b0d8ff25a7a7bc2b (patch) | |
tree | 6a3a1839aa1d89be263119ca47e260d3a8d76295 | |
parent | 051e63fd6d617898f8c8ae6f9b1ebc85f29061ce (diff) |
Use older Github runner for Python 3.7 tests
-rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33a0f97..dbbc988 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, pypy2.7] + python-version: [3.6, 3.7, pypy2.7] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -44,7 +44,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9] + python-version: [3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} |