diff --git a/.github/workflows/python-CI.yml b/.github/workflows/python-CI.yml index 6172716f98..d2d9939679 100644 --- a/.github/workflows/python-CI.yml +++ b/.github/workflows/python-CI.yml @@ -161,14 +161,16 @@ jobs: src/phoenix/ tests/unit/ tests/conftest.py - - run: find . -type l -delete + - name: Remove symbolic links (Non-Windows) + run: find . -type l -delete if: runner.os != 'Windows' - - run: | + - name: Remove symbolic links (Windows) + run: | Remove-Item src/phoenix/evals Remove-Item src/phoenix/otel shell: powershell if: runner.os == 'Windows' - - name: Set up python ${{ matrix.py }} + - name: Set up Python ${{ matrix.py }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.py }} @@ -229,16 +231,17 @@ jobs: requirements/ src/phoenix/ tests/integration/ - - name: Remove Symbolic Links (Non-Windows) + - name: Remove symbolic links (Non-Windows) run: find . -type l -delete if: runner.os != 'Windows' - - name: Remove Symbolic Links (Windows) + - name: Remove symbolic links (Windows) run: | Remove-Item src/phoenix/evals Remove-Item src/phoenix/otel shell: powershell if: runner.os == 'Windows' - - uses: actions/setup-python@v5 + - name: Set up Python ${{ matrix.py }} + uses: actions/setup-python@v5 with: python-version: ${{ matrix.py }} - uses: astral-sh/setup-uv@v3