From 49d5041befe67b9466dc1ce04872a17cc15b3bb3 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 25 Feb 2023 22:08:20 +0100 Subject: use --quiet flags for installations --- .github/workflows/ci.yml | 8 ++++---- 1 file 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: -- cgit v1.2.3