Update pytest.yml

This commit is contained in:
Kevo 2022-02-26 11:37:19 +01:00 committed by GitHub
parent 14bcace970
commit bb30204ab0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -5,6 +5,9 @@ on: [workflow_dispatch, push, pull_request]
jobs:
deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['^3.10']
steps:
- uses: actions/checkout@v2
@ -12,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '^3.10'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
@ -22,4 +25,4 @@ jobs:
- name: Test with pyTest
run: |
python -m pytest -v
python -m pytest -v