1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 15:24:46 -05:00

ci: bump Python to 2.7.17 for macOS (#3685)

This commit is contained in:
Bartek Iwańczuk 2020-01-16 15:04:51 +01:00 committed by GitHub
parent 34dc0ae280
commit 5856d21a2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"