From a00ee715c126114d34a6316247f5d8d627cc4409 Mon Sep 17 00:00:00 2001 From: Marius Merschformann Date: Mon, 2 Sep 2024 00:38:03 +0200 Subject: [PATCH] Fix build workflow --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd0dec8..cc0d8ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,9 +19,9 @@ jobs: run: | python -m pip install --upgrade pip pip install ruff pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Install project + run: pip install . - name: lint with ruff run: ruff check --output-format=github . - name: Test with pytest - run: | - pytest + run: pytest