aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 22:08:20 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-02-25 22:08:20 +0100
commit49d5041befe67b9466dc1ce04872a17cc15b3bb3 (patch)
tree1ff45778401c4ad49e46294f395d52ccbf649579
parentmake .gitattributes more consistent (diff)
downloadvk-scripts-49d5041befe67b9466dc1ce04872a17cc15b3bb3.tar.gz
vk-scripts-49d5041befe67b9466dc1ce04872a17cc15b3bb3.zip
use --quiet flags for installations
-rw-r--r--.github/workflows/ci.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8b9de56..2fe2522 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -30,7 +30,7 @@ jobs:
with:
python-version: '${{ matrix.python-version }}'
- name: Install dependencies
- run: pip install -r requirements.txt
+ run: pip install -q -r requirements.txt
- name: Run tests
run: ./test/bin/main.sh
@@ -46,11 +46,11 @@ jobs:
with:
python-version: '3.10'
- name: Verify package can be installed
- run: pip install .
+ run: pip install -q .
- name: Install package builder
- run: pip install --upgrade build
+ run: pip install -q --upgrade build
- name: Build package
- run: python3 -m build
+ run: python -m build
- name: Publish as artifact
uses: actions/upload-artifact@v3
with: