From 92ff1bfaf5d18512c38d6cb64ac7b6f290cce445 Mon Sep 17 00:00:00 2001 From: donfiguerres Date: Wed, 13 Jul 2022 19:03:02 +0800 Subject: [PATCH] Trying workaround. --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97aa565e..ad45130c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,11 +12,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install Python + uses: actions/setup-python@v4 + with: + python-version: 3.9 - name: Install Poetry run: pipx install poetry - - uses: actions/setup-python@v4 + - name: Cache poetry dependencies + uses: actions/setup-python@v4 with: - python-version: 3.9 cache: 'poetry' - name: Run linting run: poetry run make lint