From 8469154c82a2a8892293851519a2f7ceb4a5969d Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sun, 7 Aug 2022 09:45:38 +0300 Subject: Another attempt at fixing CI --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to '.github/workflows') 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 -- cgit v1.3.1