diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cae75b4..c17ae72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Install dependencies run: python -m pip install .[dev] --upgrade pip - name: Test with pytest - run: pytest --cov=./ --cov-report=xml + run: pytest # --cov=./ --cov-report=xml # - name: Build package distribution # if: startsWith(github.ref, 'refs/tags') diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1246754..95f70de 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,14 +20,14 @@ jobs: python-version: "3.11" - name: Install dependencies run: python -m pip install build . --upgrade pip - - name: Build package distribution - run: python-m build --sdist --wheel --outdir dist/ . - - name: Publish package distribution to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - skip_existing: true - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }} + # - name: Build package distribution + # run: python-m build --sdist --wheel --outdir dist/ . + # - name: Publish package distribution to PyPI + # uses: pypa/gh-action-pypi-publish@release/v1 + # with: + # skip_existing: true + # user: __token__ + # password: ${{ secrets.PYPI_API_TOKEN }} docs: runs-on: ubuntu-latest