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 }}