diff --git a/.github/workflows/github_tests_actions.yml b/.github/workflows/github_tests_actions.yml index 0174156e..93d0476a 100644 --- a/.github/workflows/github_tests_actions.yml +++ b/.github/workflows/github_tests_actions.yml @@ -29,8 +29,12 @@ jobs: - name: Install Poetry run: | pip install --upgrade pip - pip install tox + pip install poetry - - name: Run tox + - name: Install dependencies run: | - tox + poetry install + + - name: Run tests + run: | + poetry run pytest