Compare commits

..

1 Commits

Author SHA1 Message Date
4e87bd4a80 more
Some checks failed
Python Linters / pylint (pull_request) Failing after 42s
Python Linters / formatting (pull_request) Successful in 37s
Python Linters / mypy (pull_request) Successful in 37s
REUSE Compliance / reuse (pull_request) Successful in 9s
Selftests / test-build-install (pull_request) Failing after 30s
Selftests / test-sync (pull_request) Failing after 44s
2025-01-12 19:59:54 +01:00
2 changed files with 3 additions and 5 deletions

View File

@@ -16,10 +16,6 @@ runs:
run: echo "/root/.local/bin" >> ${GITHUB_PATH}
- name: 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
run: poetry install --no-interaction ${{ inputs.poetry_install_args }}
shell: bash

View File

@@ -17,8 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Add pipx to PATH
run: echo "/root/.local/bin" >> ${GITHUB_PATH}
- name: Install poetry
run: pip install poetry
run: pipx install poetry
- name: Build package
run: poetry build
- name: Install package