From b1766021d7208795c84fb40d795998d156cbf47e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Tue, 21 Nov 2023 23:38:46 -0800 Subject: [PATCH] Fix path in workflow --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6623d83..051767f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,12 +42,12 @@ jobs: - name: Lint with ruff run: | pip install ruff - ruff check src/ tests/ + ruff check python/ tests/ - name: Lint with black run: | pip install black - black --check src/gort + black --check python/lvmnps - name: Test with pytest run: |