Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
DOCS: ""
strategy:
matrix:
python-version: [ 3.7 ]
tensorflow: [ 2.2.1 ]
python-version: ["3.7", "3.8.12", "3.9.12", "3.10.4"]
poetry-version: [1.8.2]
name: Python-${{ matrix.python-version }} tensorflow${{ matrix.tensorflow }}
steps:
#----------------------------------------------
Expand Down
20 changes: 11 additions & 9 deletions .github/workflows/quality-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ name: Tests

on:
push:
pull_request:
branches:
- develop
release:
types:
- created

jobs:
test:
check-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ 3.7 ]
tensorflow: [ 2.2.1 ]
name: Python-${{ matrix.python-version }} tensorflow${{ matrix.tensorflow }}
python-version: ["3.7", "3.8.12", "3.9.12", "3.10.4"]
poetry-version: [1.1.12]
name: Python-${{ matrix.python-version }}
steps:
#----------------------------------------------
# check-out repo and set-up python
Expand All @@ -44,7 +45,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 +64,8 @@ jobs:
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
run: |
poetry install --no-interaction --no-root
#----------------------------------------------
# install root project
#----------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/upload-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
env:
DOCS: ""
strategy:
fail-fast: false
matrix:
python-version: [ 3.7 ]
tensorflow: [ 2.2.1 ]
python-version: ["3.7", "3.8.12", "3.9.12", "3.10.4"]
poetry-version: [1.8.2]
name: Python-${{ matrix.python-version }} tensorflow${{ matrix.tensorflow }}
steps:
#----------------------------------------------
Expand All @@ -46,7 +47,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 Down
Loading