79428853

Date: 2025-02-11 04:01:12
Score: 1
Natty:
Report link

I tried based on Sylvain's answer, but cache did not work. Here is a working version as of February 2025.

steps:
  - uses: actions/checkout@v4
  - name: Install poetry
    run: |
      pipx install poetry==1.8.*
      poetry config virtualenvs.create true --local
      poetry config virtualenvs.in-project true --local
  - uses: actions/setup-python@v5
    with:
      python-version: '3.12'
      cache: 'poetry'
  - run: poetry install
  - run: poetry run pytest
Reasons:
  • Blacklisted phrase (1): did not work
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Hiro