We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3a2323 commit 79c6e05Copy full SHA for 79c6e05
1 file changed
.github/workflows/build-on-pr.yml
@@ -0,0 +1,29 @@
1
+name: Publish Python 🐍 distribution 📦 to Pypi
2
+on:
3
+ pull-request:
4
+ branches:
5
+ - develop
6
+
7
+jobs:
8
+ build:
9
+ name: Publish Python 🐍 distribution 📦 to Pypi
10
+ runs-on: ubuntu-20.04
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ - name: Set up Python 3.8
14
+ uses: actions/setup-python@v1
15
+ with:
16
+ python-version: 3.8
17
+ - name: Install pypa/build
18
+ run: >-
19
+ python -m
20
+ pip install
21
+ build
22
+ --user
23
+ - name: Build a binary wheel and a source tarball
24
25
26
27
+ --sdist
28
+ --wheel
29
+ --outdir dist/
0 commit comments