|
@@ -9,20 +9,20 @@ jobs:
|
|
matrix:
|
|
matrix:
|
|
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
|
|
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
|
|
steps:
|
|
steps:
|
|
- - uses: actions/checkout@v2
|
|
|
|
|
|
+ - uses: actions/checkout@v4
|
|
|
|
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
- uses: actions/setup-python@v2
|
|
|
|
|
|
+ uses: actions/setup-python@v5
|
|
with:
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
|
- name: Install dependencies
|
|
- name: Install dependencies
|
|
run: |
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade pip
|
|
- pip install tox tox-gh-actions codecov
|
|
|
|
|
|
+ pip install tox tox-gh-actions
|
|
|
|
|
|
- name: Run tests
|
|
- name: Run tests
|
|
run: tox -- -v
|
|
run: tox -- -v
|
|
|
|
|
|
- name: Codecov upload
|
|
- name: Codecov upload
|
|
- run: codecov
|
|
|
|
|
|
+ uses: codecov/codecov-action@v3
|