Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lhstrh authored Apr 27, 2024
1 parent 8f65879 commit 7373c02
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ runs:
shell: bash
if: ${{ inputs.package == 'true' && inputs.pre-release == 'true'}}
- name: Install pylint
run: python3 -m pip install pylint
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install pylint
shell: bash
if: ${{ inputs.partial == 'false' }}
- name: Install pnpm
Expand Down

0 comments on commit 7373c02

Please sign in to comment.