Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,7 @@ jobs:
- name: 📥 Download Requirements
uses: actions/download-artifact@v4
with:
name: frozen-reqs-${{ matrix.python-version }}

- name: 📥 Apply Dependency Overrides
if: "${{ inputs.override-deps-artifact != '' }}"
uses: actions/download-artifact@v4
with:
name: ${{ inputs.override-deps-artifact }}
name: frozen-reqs-${{ matrix.python-version }}

- name: ⚡ Install uv & git
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sync-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ jobs:

run-tests:
needs: sync-and-prepare
if: needs.sync-and-prepare.outputs.sync_needed == 'true'
uses: ./.github/workflows/python-package.yml
with:
override-deps-artifact: ${{ needs.sync-and-prepare.outputs.sync_needed == 'true' && 'updated-deps' || '' }}
Expand Down