--no-cache-dir
All checks were successful
/ pylint (push) Successful in 3m37s
/ mypy (push) Successful in 5m21s

This commit is contained in:
Firq 2024-10-04 20:46:09 +02:00
parent ed8c9c446e
commit 8311d16354
Signed by: Firq
GPG key ID: 3ACC61C8CEC83C20
2 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@ jobs:
uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages
run: |
pip install -e .[lint,typing] -q --disable-pip-version-check -q
pip install -e .[lint,typing] -q --disable-pip-version-check -q --no-cache-dir
python -m pip list --format=columns --disable-pip-version-check
- name: Run pylint
run: |
@ -33,7 +33,7 @@ jobs:
- name: Checkout source code
uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages
run: pip install build
run: pip install build --no-cache-dir
- name: Build package
run: python -m build
- name: Save build artifacts
@ -53,7 +53,7 @@ jobs:
name: packages
path: dist
- name: Install Dependencies
run: pip install twine
run: pip install twine --no-cache-dir
- name: Upload package to registry
run: python -m twine upload --repository-url ${{ secrets.REPOSITORY_URL }} -u ${{ secrets.TWINE_DEPLOY_USER }} -p ${{ secrets.TWINE_DEPLOY_PASSWORD }} dist/*

View file

@ -11,7 +11,7 @@ jobs:
uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages
run: |
pip install -e .[lint] -q --disable-pip-version-check -q
pip install -e .[lint] -q --disable-pip-version-check -q --no-cache-dir
python -m pip list --format=columns --disable-pip-version-check
- name: Run pylint
run: |
@ -26,7 +26,7 @@ jobs:
uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages
run: |
pip install -e .[typing] -q --disable-pip-version-check -q
pip install -e .[typing] -q --disable-pip-version-check -q --no-cache-dir
python -m pip list --format=columns --disable-pip-version-check
- name: Run mypy
run: |