Skip to content

Commit

Permalink
fix: docker ci (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Jun 9, 2024
1 parent e3c0057 commit 3d8e9fe
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,18 @@ jobs:
with:
fetch-depth: 0

- name: Install poetry
run: pipx install poetry

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ env.DEFAULT_PYTHON }}"
cache: "poetry"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r dev-requirements.txt
pip install -e ".[dev]"
poetry install
- name: Get current version (rebuild)
if: ${{ inputs.rebuild == 'yes' }}
Expand Down

0 comments on commit 3d8e9fe

Please sign in to comment.