Skip to content

Commit

Permalink
Merge branch 'local_update_tests' into update_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emirkmo committed Feb 15, 2022
2 parents 975436b + cd37bdd commit 197b7e4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
with:
persist-credentials: true

- name: Setup Python 3.7
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-py3.7-${{ hashFiles('requirements.txt') }}
key: ${{ runner.os }}-pip-py3.8-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-py3.7-
${{ runner.os }}-pip-py3.8-
${{ runner.os }}-pip-
- name: Install dependencies
Expand All @@ -57,7 +57,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.8, 3.9, '3.10']
include:
- os: ubuntu-latest
pippath: ~/.cache/pip
Expand Down Expand Up @@ -146,18 +146,18 @@ jobs:
- name: Git LFS Pull
run: git lfs pull

- name: Setup Python 3.7
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-py3.7-${{ hashFiles('requirements.txt') }}
key: ${{ runner.os }}-pip-py3.8-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-py3.7-
${{ runner.os }}-pip-py3.8-
${{ runner.os }}-pip-
- name: Install dependencies
Expand Down

0 comments on commit 197b7e4

Please sign in to comment.