fix(ci): fix constantly failing CI #450

Merged
luke merged 27 commits from fix-cicd into main 2025-01-02 18:05:16 +01:00
Showing only changes of commit c883b33e42 - Show all commits

View File

@ -31,12 +31,13 @@ jobs:
with:
python-version: "${{ vars.PYTHON_VERSION }}"
- name: Ensure pipx is in PATH
run: pipx ensurepath
- name: Setup Poetry
uses: abatilo/actions-poetry@v4
- name: Setup virtual environment
env:
${{ env.PATH }}:/root/.poetry/bin
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
@ -49,20 +50,14 @@ jobs:
restore-keys: venv-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
env:
${{ env.PATH }}:/root/.poetry/bin
run: poetry install
- name: Lint
env:
${{ env.PATH }}:/root/.poetry/bin
run: |
poetry run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt .
cat lintreport.txt
- name: Unit Test
env:
${{ env.PATH }}:/root/.poetry/bin
run: |
poetry run coverage run -m pytest -v --junitxml=testresults.xml
poetry run coverage xml