Skip to content

Commit

Permalink
ci: Fix to install extras for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
attakei committed Dec 4, 2024
1 parent e8aaed8 commit a6410b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:
echo ${{ matrix.python-version }} > .python-version
- name: 'Configure env as locked deps by uv.lock'
run: |
uv sync --frozen --python='${{ steps.setup-python.outputs.python-path }}'
uv sync --frozen --all-extras --python='${{ steps.setup-python.outputs.python-path }}'
if: ${{ matrix.workspace == 'locked'}}
- name: 'Configure env as latest deps on PyPI'
run: |
uv sync -U --python='${{ steps.setup-python.outputs.python-path }}'
uv sync -U --all-extras --python='${{ steps.setup-python.outputs.python-path }}'
if: ${{ matrix.workspace == 'latest'}}
- name: 'Run tests'
run: |
Expand Down

0 comments on commit a6410b5

Please sign in to comment.