diff options
| author | Yuval Adam <_@yuv.al> | 2022-08-07 09:45:38 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-08-07 09:45:38 +0300 |
| commit | 8469154c82a2a8892293851519a2f7ceb4a5969d (patch) | |
| tree | 10e17a03630e29953e195c13b1eb38c861bddda1 /.github | |
| parent | 417dd796d475d491ea81d0c6f1dea67c931b8b72 (diff) | |
Another attempt at fixing CI
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 |
