diff options
-rw-r--r-- | .github/workflows/basic.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 2396100..d7ad6c2 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -106,11 +106,11 @@ jobs: with: python-version: '3.x' - name: Verify package can be installed - run: python3 -m pip install . + run: pip install -q . - name: Install package builder - run: python3 -m 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: |