.gitlab-ci.ymlpylint: stage: test script: - powershell -File ci\pylint\run_pylint.ps1 - pylint --exit-zero --output-format=pylint_junit.JUnitReporter --output=report_pylint.xml --recursive=y . artifacts: when: always paths: - pylint - report_pylint.xml reports: junit: report_pylint.xml run_pylint.ps1# Ensure pip is installed and up to datepython -m ensurepip --..