From d7e5842abb7ba0699ffe94bb6883fab3cfb77c11 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Sun, 7 Aug 2022 09:47:35 +0300 Subject: Revert "Another attempt at fixing CI" This reverts commit 8469154c82a2a8892293851519a2f7ceb4a5969d. --- .github/workflows/build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b9a4187..45e601b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,13 +17,14 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install pip and testing tools run: | - python -m pip install black pytest pylint + python -m pip install --upgrade pipenv + pipenv install -d - name: Check formatting with black run: | - black --check alarmpy + pipenv run formatcheck - name: Run pylint run: | - pylint -j 0 -d R,C alarmpy + pipenv run lint - name: Test with pytest run: | - pytest + pipenv run test -- cgit v1.3.1