From 10bf6ba332a94480ee0ce91ee1deb33a61f57434 Mon Sep 17 00:00:00 2001 From: pstlouis Date: Wed, 8 Jan 2025 15:01:25 -0500 Subject: [PATCH] fix gh action Signed-off-by: pstlouis --- .github/workflows/pr-tests.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-tests.yaml b/.github/workflows/pr-tests.yaml index 3ebe9ca..2fbb237 100644 --- a/.github/workflows/pr-tests.yaml +++ b/.github/workflows/pr-tests.yaml @@ -5,7 +5,7 @@ on: branches: [ main ] jobs: - test: + build: runs-on: ubuntu-latest defaults: @@ -16,7 +16,9 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 - uses: abatilo/actions-poetry@v4 - - name: Install dependencies and run pytest + - name: Install project run: | poetry install - pytest \ No newline at end of file + - name: Run pytest + run: | + poetry run pytest \ No newline at end of file