diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 62cfd601847a994c50c284f71803ef990c6f8c4f..6e512d0799d1feab23d3bdcdcd82637a62978715 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -21,12 +21,14 @@ jobs: with: python-version: '3.x' - name: Install dependencies - run: make install + run: | + make install test: runs-on: ubuntu-latest steps: - - run: make test + - run: | + make test deploy: runs-on: ubuntu-latest @@ -35,6 +37,4 @@ jobs: env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - run: | - make dist - make publish + run: make dist & make publish