From b479476c04aefe3d3504076079fe6a4fd5f9519c Mon Sep 17 00:00:00 2001 From: Martin Gruber Date: Sun, 22 Sep 2024 17:25:37 +0200 Subject: [PATCH] use pipx for github action --- .github/workflows/actions.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index d96dc49..cddc8ee 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v2 - name: Build - run: python --version && pip install poetry && poetry install + run: python --version && pip install pipx && pipx install poetry && poetry install test: runs-on: ubuntu-latest @@ -36,11 +36,11 @@ jobs: uses: actions/checkout@v2 - name: Install Poetry - run: pip install poetry + run: pip install pipx && pipx install poetry - name: Install dependencies run: poetry install - name: Test run: poetry run pytest -v --cov=flapy --cov-branch --cov-report html:cov_html --cov-report=term-missing tests/ - working-directory: ${{ github.workspace }} \ No newline at end of file + working-directory: ${{ github.workspace }}