ci: bump python and it's actions

* remove 3.7, add 3.10
 * use the latest versions of actions
This commit is contained in:
Alex Bezzubov 2024-05-11 19:49:24 +02:00
parent d0d4ffb143
commit 064b6fca57

View File

@ -4,16 +4,16 @@ jobs:
test:
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.8', '3.9', '3.10']
platform: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip