From 4b95e4a01026602654e0ebe140aafc4fb84b7db1 Mon Sep 17 00:00:00 2001 From: Evan Tung Date: Thu, 11 Jul 2024 21:40:30 -0400 Subject: [PATCH] fix: reorder linting and testing workflow --- .github/workflows/integrate.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index b2b914c..acfcca9 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -29,17 +29,17 @@ jobs: python -m pip install pipenv pipenv install --dev - - name: Lint Project - run: pipenv run pylint --load-plugins pylint_django --django-settings-module=sibyl.settings sibyl community psychopass dominator - - - name: Check Formatting - run: pipenv run black --check . - - name: Run Tests run: | pipenv run python manage.py collectstatic pipenv run coverage run manage.py test pipenv run coverage xml + + - name: Lint Project + run: pipenv run pylint --load-plugins pylint_django --django-settings-module=sibyl.settings --exit-zero sibyl community psychopass dominator + + - name: Check Formatting + run: pipenv run black --check . - name: Codecov uses: codecov/codecov-action@v4