update runner os to matrix os.

This commit is contained in:
erinhmclark
2025-03-31 12:00:24 +01:00
parent 8940580638
commit 9c2b506189
2 changed files with 2 additions and 12 deletions

View File

@@ -42,15 +42,10 @@ jobs:
path: |
~/.cache/pypoetry
~/.cache/pip
key: poetry-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Clear Poetry PyPI cache
run: poetry cache clear pypi --all
key: poetry-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies from source only
run: poetry install --no-interaction --with dev
env:
PIP_NO_BINARY: ":all:"
- name: Run Core Tests
run: |

View File

@@ -36,15 +36,10 @@ jobs:
path: |
~/.cache/pypoetry
~/.cache/pip
key: poetry-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Clear Poetry PyPI cache
run: poetry cache clear pypi --all
key: poetry-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies from source only
run: poetry install --no-interaction --with dev
env:
PIP_NO_BINARY: ":all:"
- name: Run Download Tests
run: poetry run pytest -ra -v -x -m "download"