From 16551369b2adc6650014ae4a167fb9a7baa585e7 Mon Sep 17 00:00:00 2001 From: Aryan Iyappan <69184573+codebyaryan@users.noreply.github.com> Date: Sat, 21 Aug 2021 17:16:43 +0530 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6de43f37..cdc4d01e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -52,32 +52,3 @@ jobs: - run: pip install tox - run: tox -e ${{ matrix.tox }} - - coveralls_finish: - # check coverage increase/decrease - needs: tests - runs-on: ubuntu-latest - steps: - - name: Coveralls Finished - uses: AndreMiras/coveralls-python-action@develop - - deploy: - # builds and publishes to PyPi - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: '3.7' - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install build - - name: Build package - run: python -m build - - name: Publish package - uses: pypa/gh-action-pypi-publish@release/v1 - with: - user: __token__ - password: ${{ secrets.PYPI_API_TOKEN }}