Fix 'run' commands
Some checks failed
black
flake8
mypy-pytest
pylint

This commit is contained in:
Val Lorentz 2023-05-20 15:30:49 +02:00
parent cd5c0e7d79
commit 5ee8d363a5

View File

@ -9,9 +9,9 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install flake8
uses: pip3 install flake8
run: pip3 install flake8
- name: Run flake8
uses: flake8 glowtables/
run: flake8 glowtables/
pylint:
runs-on: ubuntu-latest
@ -19,9 +19,9 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install pylint
uses: pip3 install pylint
run: pip3 install pylint
- name: Run pylint
uses: pylint glowtables/
run: pylint glowtables/
black:
runs-on: ubuntu-latest
@ -29,9 +29,9 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install black
uses: pip3 install black==22.8.0
run: pip3 install black==22.8.0
- name: Run black
uses: black --check glowtables/
run: black --check glowtables/
mypy-pytest:
runs-on: ubuntu-latest
@ -42,10 +42,10 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Install
uses: pip3 install mypy .[testing]
run: pip3 install mypy .[testing]
- name: Run mypy
uses: make mypy
run: make mypy
- name: Run pytest
uses: make pytest
run: make pytest
matrix:
python: ["3.9", "3.11"]