diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45e601b..b9a4187 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,14 +17,13 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install pip and testing tools run: | - python -m pip install --upgrade pipenv - pipenv install -d + python -m pip install black pytest pylint - name: Check formatting with black run: | - pipenv run formatcheck + black --check alarmpy - name: Run pylint run: | - pipenv run lint + pylint -j 0 -d R,C alarmpy - name: Test with pytest run: | - pipenv run test + pytest |
