diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 21:38:01 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-25 21:38:01 +0100 |
commit | 3bd571855591fd067b4e3647e81751c88d5464c9 (patch) | |
tree | e6bf7f6cc8e61c1d1c69e273656fd664b9ea76b3 /.github/workflows/ci.yml | |
parent | docker: add run.sh (diff) | |
download | cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.tar.gz cgitize-3bd571855591fd067b4e3647e81751c88d5464c9.zip |
add --quiet flags to all installations
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62b205c..51fd8f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: git config --global user.name 'John Doe' git config --global user.email 'John.Doe@example.com' - name: Install dependencies - run: pip install -e . + run: pip install -q -e . - name: Integration test (local) run: ./test/integration/local/test.sh - name: Unit tests @@ -68,7 +68,7 @@ jobs: python-version: '3.10' cache: pip - name: Install dependencies - run: pip install -r requirements.txt + run: pip install -q -r requirements.txt - name: Set up ssh-agent uses: webfactory/ssh-agent@v0.7.0 with: @@ -143,9 +143,9 @@ 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: python -m build - name: Publish as artifact |