We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dac26bb commit a3b5d2fCopy full SHA for a3b5d2f
.github/workflows/python-package.yml
@@ -21,6 +21,10 @@ jobs:
21
uses: actions/setup-python@v1
22
with:
23
python-version: ${{ matrix.python-version }}
24
+ - name: Print the platform name
25
+ run: |
26
+ echo "import sys; print(sys.platform)" > print_platform.py
27
+ python print_platform.py
28
- name: Install dependencies
29
run: |
30
python -m pip install --upgrade pip
azure-pipelines.yml
@@ -29,6 +29,11 @@ jobs:
versionSpec: '$(python.version)'
architecture: 'x64'
31
32
+ - script: |
33
34
35
+ displayName: 'Print the platform name'
36
+
37
- script: python -m pip install --upgrade pip && pip --version
38
displayName: 'Install/upgrade pip'
39
0 commit comments