Skip to content

Commit 9483054

Browse files
author
=
committed
check flow
1 parent d29b2ca commit 9483054

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: test publish pypi package
2+
3+
on:
4+
push:
5+
branches:
6+
fix/black-vuln
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Set up Python
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.8
17+
- name: Install pipenv
18+
run: |
19+
python -m pip install --upgrade pip
20+
python -m pip install --upgrade setuptools wheel
21+
python -m pip install --upgrade pipenv
22+
- name: Install dependencies
23+
run: pipenv install --dev
24+
- name: Publish package
25+
run: |
26+
pipenv run pipenv install
27+
pipenv run python setup.py sdist bdist_wheel
28+
env:
29+
PACKAGE_VERSION_TO_PUBLISH: "7.4.6"

0 commit comments

Comments
 (0)