summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml
index ff03eb22..0b9ef72c 100644
--- a/.github/workflows/test-ci.yml
+++ b/.github/workflows/test-ci.yml
@@ -18,14 +18,14 @@ jobs:
18 runs-on: ${{ matrix.os }} 18 runs-on: ${{ matrix.os }}
19 19
20 steps: 20 steps:
21 - uses: actions/checkout@v2 21 - uses: actions/checkout@v3
22 - name: Set up Python ${{ matrix.python-version }} 22 - name: Set up Python ${{ matrix.python-version }}
23 uses: actions/setup-python@v1 23 uses: actions/setup-python@v4
24 with: 24 with:
25 python-version: ${{ matrix.python-version }} 25 python-version: ${{ matrix.python-version }}
26 - name: Install dependencies 26 - name: Install dependencies
27 run: | 27 run: |
28 python -m pip install --upgrade pip 28 python -m pip install --upgrade pip
29 pip install tox tox-gh-actions 29 python -m pip install tox tox-gh-actions
30 - name: Test with tox 30 - name: Test with tox
31 run: tox 31 run: tox