Fix 'run' commands
This commit is contained in:
@ -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"]
|
||||
|
Reference in New Issue
Block a user