Skip to content

Commit

Permalink
update workflows to poetry 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kdberends committed Mar 15, 2024
1 parent 5555a85 commit 955668f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7]
python-version: ["3.10"]
poetry-version: ["1.8.2"]
os: [windows-latest]
include:
- spec: FM2PROF_WINDOWS.spec
Expand All @@ -29,9 +30,9 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Run image
uses: abatilo/actions-poetry@v2.0.0
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.1.8
poetry-version: ${{ matrix.poetry-version }}
- name: Cache Poetry virtualenv
uses: actions/cache@v1
id: cache
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,23 @@ on:
- master
jobs:
deploy:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
poetry-version: ["1.8.2"]

runs-on: ubuntu-latest
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
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.1.8
poetry-version: ${{ matrix.poetry-version }}
- name: Cache Poetry virtualenv
uses: actions/cache@v1
id: cache
Expand Down

0 comments on commit 955668f

Please sign in to comment.