diff --git a/.github/workflows/validate-code.yaml b/.github/workflows/validate-code.yaml index 35ebd1c..7bcfad1 100644 --- a/.github/workflows/validate-code.yaml +++ b/.github/workflows/validate-code.yaml @@ -83,11 +83,11 @@ jobs: python-version: ${{ matrix.python-version }} - name: install uv uses: astral-sh/setup-uv@v7 - - name: install dependencies with: python-version: ${{ matrix.python-version }} + - name: install dependencies run: | - uv export --format=requirements.txt --all-extras --dev > requirements.txt + uv export --format=requirements.txt --no-emit-local --all-extras --dev > requirements.txt pip install -r requirements.txt # https://github.com/marketplace/actions/run-pytest - name: perform unit tests (Python ${{ matrix.python-version }})