From 904720d75cf8ed7beac1130de197026e770b5ae1 Mon Sep 17 00:00:00 2001 From: ckunki Date: Wed, 11 Oct 2023 13:42:06 +0200 Subject: [PATCH] install poetry before cache --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 477e561..7af9378 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,9 @@ jobs: steps: - uses: actions/checkout@v2 + - name: Install Poetry + run: | + pipx install poetry - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}