From b554e4316a7020e5506cc2be5748150a7295e7a5 Mon Sep 17 00:00:00 2001 From: Eriq Augustine Date: Tue, 26 Sep 2023 15:51:13 -0500 Subject: [PATCH] Working on fixing CI for windows. --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd03f16c..094a2a49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -29,6 +29,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + # Symlink python3 on windows. + - name: Configure Python 3 + if: contains(matrix.os, 'windows') + shell: cmd + run: mklink "%pythonLocation%\python3.exe" "%pythonLocation%\python.exe" + - name: Cache Python Dependencies uses: actions/cache@v2 with: