We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d03c93f commit 01e81a9Copy full SHA for 01e81a9
action.yml
@@ -144,6 +144,18 @@ runs:
144
github_token: ${{ inputs.github_token }}
145
workdir: ${{ inputs.root }}/${{ inputs.workdir }}
146
147
+ - if: ${{ inputs.pylint == 'true' }}
148
+ uses: actions/setup-python@v4
149
+ with:
150
+ python-version: ${{ inputs.python_version }}
151
+ cache: 'pip' # caching pip dependencies
152
+ - if: ${{ inputs.pytest == 'true' }}
153
+ run: |
154
+ python -m pip install --upgrade pip
155
+ python -m pip install pytest pylint
156
+ cd "${{ inputs.root }}/${{ inputs.workdir }}"
157
+ python -m flit install || python -m pip install .
158
+
159
- if: ${{ inputs.pylint == 'true' }}
160
uses: dciborow/[email protected]
161
with:
0 commit comments