Archived
1
1
Fork 0

workflow: *properly* specify python3

This commit is contained in:
Josh Lay 2023-08-06 02:25:45 -05:00
parent 7d26a36ab7
commit 9872fe8811
Signed by: jlay
GPG key ID: B265E45CACAD108A

View file

@ -23,8 +23,8 @@ jobs:
- uses: actions/checkout@v3
- name: Install Python Deps
run: |
python3 install --upgrade pip
pip install -r requirements.txt
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')