aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-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 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