From af482a1aec85e1d0d7d07512f52730d904b501fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Tue, 31 Oct 2023 11:12:02 +0100 Subject: [PATCH] ci: fixed workflows --- .github/workflows/build.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e256a2c4..9db8227c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,8 +25,7 @@ jobs: with: submodules: 'recursive' - name: Install poetry - run: | - pip install poetry + run: pipx install poetry - name: Set up Python uses: actions/setup-python@v4 with: @@ -56,14 +55,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install poetry + run: pipx install poetry - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.10' cache: 'poetry' - - name: Install poetry - run: | - pip install poetry - name: Install dependencies run: | make build @@ -76,14 +74,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install poetry + run: pipx install poetry - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.10' cache: 'poetry' - - name: Install poetry - run: | - pip install poetry - name: Install dependencies run: | make build