next try
Code Quality Pipeline / Check Code (pull_request) Failing after 1m24s

This commit is contained in:
brian
2025-03-06 21:29:52 +00:00
parent 813daa0c90
commit d4c9738db4
+6 -3
View File
@@ -15,16 +15,19 @@ jobs:
with:
python-verison: "3.12"
architecture: "x64"
- name: Install Packages
- name: Setup poetry
env:
PIP_INDEX_URL: ${{ vars.PIP_INDEX_URL }}
PIP_TRUSTED_HOST: ${{ vars.PIP_TRUSTED_HOST }}
POETRY_VERSION: 1.8.3
POETRY_HOME: /opt/poetry
POETRY_NO_INTERACTION: 1
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH=$POETRY_HOME/bin:$PATH
- name: Install Dependencies
env:
PIP_INDEX_URL: ${{ vars.PIP_INDEX_URL }}
PIP_TRUSTED_HOST: ${{ vars.PIP_TRUSTED_HOST }}
run: |
poetry install
- name: PEP8 Check
run: |