diff options
Diffstat (limited to '.github')
-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 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: |