summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0b4c00e..a286cf7 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -14,8 +14,6 @@ jobs:
steps:
- name: Check out repo
uses: actions/checkout@v3
- - name: Set up Python
- uses: actions/setup-python@v3
- name: Run pre-commit
uses: pre-commit/action@v3.0.0
@@ -25,13 +23,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
- python-version: ["3.7", "3.8", "3.9", "3.10"]
+ python-version: ["3.7", "3.10"]
exclude:
# Windows tests fail on 3.10 -- somehow the output of tiptop --help is off
- os: windows-latest
python-version: "3.10"
steps:
- - uses: actions/setup-python@v3
+ - uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
@@ -41,4 +39,4 @@ jobs:
tox
- name: Submit to codecov
uses: codecov/codecov-action@v3
- if: ${{ matrix.python-version == '3.9' }}
+ if: ${{ matrix.python-version == '3.10' }}