Update pytest.yml
This commit is contained in:
parent
14bcace970
commit
bb30204ab0
1 changed files with 5 additions and 2 deletions
7
.github/workflows/pytest.yml
vendored
7
.github/workflows/pytest.yml
vendored
|
@ -5,6 +5,9 @@ on: [workflow_dispatch, push, pull_request]
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ['^3.10']
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -12,7 +15,7 @@ jobs:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: '^3.10'
|
python-version: ${{ matrix.python-version }}
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
@ -22,4 +25,4 @@ jobs:
|
||||||
|
|
||||||
- name: Test with pyTest
|
- name: Test with pyTest
|
||||||
run: |
|
run: |
|
||||||
python -m pytest -v
|
python -m pytest -v
|
||||||
|
|
Loading…
Reference in a new issue