summaryrefslogtreecommitdiff
path: root/.github/workflows/codeqa-test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/codeqa-test.yml')
-rw-r--r--.github/workflows/codeqa-test.yml16
1 files changed, 9 insertions, 7 deletions
diff --git a/.github/workflows/codeqa-test.yml b/.github/workflows/codeqa-test.yml
index feece77..cf75fa1 100644
--- a/.github/workflows/codeqa-test.yml
+++ b/.github/workflows/codeqa-test.yml
@@ -21,16 +21,20 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-10.15, macos-11, windows-latest]
- python-version: ["2.7", "3.6", "3.9", "3.10", "pypy-2.7", "pypy-3.7"]
+ python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7"]
exclude:
- os: macos-11
- python-version: pypy-2.7
+ python-version: "3.8"
+ - os: macos-11
+ python-version: "3.9"
+ - os: macos-11
+ python-version: "pypy-3.7"
- os: windows-latest
- python-version: "2.7"
+ python-version: "3.8"
- os: windows-latest
- python-version: pypy-2.7
+ python-version: "3.9"
- os: windows-latest
- python-version: pypy-3.7
+ python-version: "pypy-3.7"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
@@ -38,8 +42,6 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- - name: Upgrade setuptools
- run: pip install "setuptools >= 40.9"
- name: Install the project
run: "pip install --no-binary=:all: ."
- name: Install test dependencies