Skip to content

Commit

Permalink
CI/CD hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
gstenzel committed Aug 1, 2024
1 parent 31dc3f5 commit 6b405ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
python-version: ["3.10", ]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install poetry
run: |
pip install poetry
- name: Install dependencies
run: |
poetry install --with dev
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
python-version: ["3.10", ]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install poetry
run: |
pip install poetry
- name: Install dependencies
run: |
poetry install --with dev
Expand Down

0 comments on commit 6b405ce

Please sign in to comment.