Just use Python version 3.10 in test Github Workflow

This commit is contained in:
Debanjum Singh Solanky
2022-08-03 20:25:15 +03:00
parent d42203d29e
commit 5d391fdcbe

View File

@@ -23,17 +23,14 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: '3.10'
- name: Install System Dependencies
shell: bash -l {0}