Skip to content

Commit

Permalink
ci: run twine check
Browse files Browse the repository at this point in the history
  • Loading branch information
whtsky committed Nov 19, 2019
1 parent 42073ab commit 0a44eb8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,25 @@ jobs:
docker:
- image: python:3.8
<<: *test
twine_check:
docker:
- image: python:3.8
working_directory: ~/bencoder.pyx
steps:
- checkout
- run:
name: install dependencies
command: |
pip install -U pip setuptools wheel twine
pip install -r dev-requirements.txt
- run:
name: build wheel
command: |
python setup.py bdist_wheel
- run:
name: twine check
command: |
twine check dist/*.whl
pypy:
docker:
- image: pypy:2
Expand Down Expand Up @@ -83,3 +102,4 @@ workflows:
- py38
- pypy
- pypy3
- twine_check
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ A fast bencode implementation in Cython supports both Python2 & Python3 .
.. image:: https://codecov.io/gh/whtsky/bencoder.pyx/branch/master/graph/badge.svg
:alt: Codecov Coverage
:target: https://codecov.io/gh/whtsky/bencoder.pyx

Install
-------

Expand Down

0 comments on commit 0a44eb8

Please sign in to comment.