From bb30204ab0453edc77f796608346751c8b2b2caa Mon Sep 17 00:00:00 2001 From: Kevo Date: Sat, 26 Feb 2022 11:37:19 +0100 Subject: [PATCH] Update pytest.yml --- .github/workflows/pytest.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index aadcac6..93d63d7 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -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 \ No newline at end of file + python -m pytest -v