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:
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue