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 1f6b6af commit c0c616eCopy full SHA for c0c616e
action.yml
@@ -86,11 +86,17 @@ runs:
86
python-version: ${{ inputs.python-version }}
87
architecture: x64
88
cache: pip
89
- - run: |
90
- python --version
91
- pip install -r ${{ github.action_path }}/requirements.txt
+ - run: python --version
+ - name: Is Windows
+ if: ${{ runner.os }} == "Windows"
92
+ run: pip install -r ${{ github.action_path }}\requirements.txt
93
shell: bash
- name: Install lintners
94
+ name: Install lintners on Win
95
+ - name: Is Posix
96
+ if: ${{ runner.os }} != "Windows"
97
+ run: pip install -r ${{ github.action_path }}/requirements.txt
98
+ shell: bash
99
+ name: Install lintners on Posix
100
- run: >
101
${{ github.action_path }}/entrypoint.sh
102
'${{ inputs.python-root-list }}'
0 commit comments