Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Va/test diff poetry #33

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
12 changes: 7 additions & 5 deletions .github/workflows/quality-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7 ]
tensorflow: [ 2.2.1 ]
name: Python-${{ matrix.python-version }} tensorflow${{ matrix.tensorflow }}
python-version: [ "3.8.12" ]
name: Python-${{ matrix.python-version }}
steps:
#----------------------------------------------
# check-out repo and set-up python
Expand All @@ -44,7 +43,7 @@ jobs:
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.1.6
version: 1.8.2
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
Expand All @@ -63,7 +62,10 @@ jobs:
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
run: |
rm poetry.lock
poetry lock
poetry install --no-interaction --no-root
#----------------------------------------------
# install root project
#----------------------------------------------
Expand Down
Loading
Loading