add py310 to the test matrix

This commit is contained in:
Wing Lian
2023-05-28 14:25:57 -04:00
parent a798ba1659
commit 658ed86cb5

View File

@@ -1,11 +1,14 @@
name: PyTest name: PyTest
on: on:
push: push:
pull_request: pull_request:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.9", "3.10"]
timeout-minutes: 10 timeout-minutes: 10
steps: steps:
@@ -15,7 +18,7 @@ jobs:
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.9" python-version: ${{ matrix.python_version }}
cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
- name: Install dependencies - name: Install dependencies