Compare commits

...

2 Commits

Author SHA1 Message Date
64f3256d3d sort
Some checks failed
Python Linters / formatting (pull_request) Has been cancelled
Python Linters / mypy (pull_request) Has been cancelled
Python Linters / pylint (pull_request) Has been cancelled
REUSE Compliance / reuse (pull_request) Successful in 9s
Selftests / test-build-install (pull_request) Failing after 8s
Selftests / test-sync (pull_request) Has been cancelled
2025-01-12 19:55:01 +01:00
bf9d229fc7 add cache
Some checks failed
Python Linters / pylint (pull_request) Failing after 58s
Python Linters / formatting (pull_request) Failing after 10s
Python Linters / mypy (pull_request) Failing after 10s
REUSE Compliance / reuse (pull_request) Successful in 8s
Selftests / test-build-install (pull_request) Failing after 7s
Selftests / test-sync (pull_request) Failing after 9s
2025-01-12 19:45:10 +01:00

View File

@@ -16,6 +16,10 @@ runs:
run: echo "/root/.local/bin" >> ${GITHUB_PATH} run: echo "/root/.local/bin" >> ${GITHUB_PATH}
- name: Install poetry - name: Install poetry
run: pipx install poetry run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "poetry" # caching poetry dependencies
- name: Install poetry package - name: Install poetry package
run: poetry install --no-interaction ${{ inputs.poetry_install_args }} run: poetry install --no-interaction ${{ inputs.poetry_install_args }}
shell: bash shell: bash