We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 689f819 commit e180d36Copy full SHA for e180d36
.github/workflows/tests.yml
@@ -50,10 +50,14 @@ jobs:
50
make doctest
51
- name: Check that release process is not broken
52
if: matrix.python-version == '3.7' && matrix.os == 'ubuntu-latest'
53
+ env:
54
+ TWINE_USERNAME: __token__
55
+ TWINE_PASSWORD: ${{ secrets.PYPI_TEST_PASSWORD }}
56
run: |
57
pip install build wheel twine
58
python -m build .
59
twine check dist/*
60
+ twine upload --repository testpypi --skip-existing dist/*
61
- name: Upload coverage to Codecov
62
if: matrix.python-version == '3.8' && matrix.os == 'ubuntu-latest'
63
uses: codecov/codecov-action@v1
0 commit comments