Added quiet flag
All checks were successful
/ pylint (push) Successful in 23s
/ mypy (push) Successful in 27s

This commit is contained in:
Firq 2024-10-05 15:09:05 +02:00
parent fbda98805f
commit ad4391caea
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 uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages - name: Install packages
run: | run: |
pip install -e .[lint,typing] -q --disable-pip-version-check -q --no-cache-dir pip install -e .[lint,typing] -q --disable-pip-version-check -q --no-cache-dir -q
python -m pip list --format=columns --disable-pip-version-check python -m pip list --format=columns --disable-pip-version-check
- name: Run pylint - name: Run pylint
run: | run: |
@ -33,7 +33,7 @@ jobs:
- name: Checkout source code - name: Checkout source code
uses: https://code.forgejo.org/actions/checkout@v3 uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages - name: Install packages
run: pip install build --no-cache-dir run: pip install build --no-cache-dir -q
- name: Build package - name: Build package
run: python -m build run: python -m build
- name: Save build artifacts - name: Save build artifacts
@ -53,7 +53,7 @@ jobs:
name: packages name: packages
path: dist path: dist
- name: Install Dependencies - name: Install Dependencies
run: pip install twine --no-cache-dir run: pip install twine --no-cache-dir -q
- name: Upload package to registry - 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/* 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 uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages - name: Install packages
run: | run: |
pip install -e .[lint] --disable-pip-version-check --no-cache-dir pip install -e .[lint] --disable-pip-version-check --no-cache-dir -q
python -m pip list --format=columns --disable-pip-version-check python -m pip list --format=columns --disable-pip-version-check
- name: Run pylint - name: Run pylint
run: | run: |
@ -26,7 +26,7 @@ jobs:
uses: https://code.forgejo.org/actions/checkout@v3 uses: https://code.forgejo.org/actions/checkout@v3
- name: Install packages - name: Install packages
run: | run: |
pip install -e .[typing] --disable-pip-version-check --no-cache-dir pip install -e .[typing] --disable-pip-version-check --no-cache-dir -q
python -m pip list --format=columns --disable-pip-version-check python -m pip list --format=columns --disable-pip-version-check
- name: Run mypy - name: Run mypy
run: | run: |