Skip to content

Commit

Permalink
update deploy config
Browse files Browse the repository at this point in the history
  • Loading branch information
thevincentadam committed Sep 15, 2021
1 parent 552be7d commit a6a9a30
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,30 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.7 ]
tensorflow: [ 2.2.1 ]
poetry-version: [ 1.1.6 ]
python-version: [3.7]
tensorflow: [2.2.1]
poetry-version: [1.1.6]
name: Python-${{ matrix.python-version }} tensorflow${{ matrix.tensorflow }}
env:
VERSION_TF: ${{ matrix.tensorflow }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.0.0
- run: |
poetry install
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('notebook_requirements.txt') }}-${{ hashFiles('tests_requirements.txt') }}
# ------------ install markovflow
- name: Install package
run: poetry install
- name: make documentation
run: |
cd docs
pip install -r doc_requirements.txt
make docs
Expand Down

0 comments on commit a6a9a30

Please sign in to comment.