From 29b061362fe3c2fd83920140b95cc84b62c0da3b Mon Sep 17 00:00:00 2001 From: donfiguerres Date: Wed, 13 Jul 2022 19:03:02 +0800 Subject: [PATCH] Trying workaround. Former-commit-id: 7323484f1ac6fc090972501213148e50246dfb35 Former-commit-id: 867580d86b2de1aa8524ba0200eec0b7f2a60c7b Former-commit-id: 9199e40bb65311fa515290c98bf3311b97d8d681 --- .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