diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-16 15:04:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-16 15:04:51 +0100 |
commit | 5856d21a2eca75bad28108cb53066259fd7427fb (patch) | |
tree | 97138b1caa76fed782707f447b0352c6c25f429b | |
parent | 34dc0ae280ba2838bbe29688ddcb16364d8d8bd1 (diff) |
ci: bump Python to 2.7.17 for macOS (#3685)
-rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66ddc968e..3e4cd57ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,15 @@ jobs: rustup component add clippy rustup component add rustfmt - - name: Install python + - name: Install Python (macOS) + if: startsWith(matrix.os, 'macOS') + uses: actions/setup-python@v1 + with: + python-version: "2.7.17" + architecture: x64 + + - name: Install Python + if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'windows') uses: actions/setup-python@v1 with: python-version: "2.7.16" |