We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f71da5f commit b323ddcCopy full SHA for b323ddc
.github/workflows/package.yml
@@ -0,0 +1,42 @@
1
+name: Kazoo Awesome Packaging Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - release/*
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ package-without-publish:
15
+ name: Testing packaging WITHOUT publishing to Pypi
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Handle the code
19
+ uses: actions/checkout@v2
20
21
+ - name: Set up Python 3.10
22
+ uses: actions/setup-python@v2
23
+ with:
24
+ python-version: "3.10"
25
26
+ - name: Install pypa/build
27
+ run: >-
28
+ python -m
29
+ pip install
30
+ build
31
+ --user
32
33
+ - name: Build a binary wheel and a source tarball
34
35
36
37
+ -C--global-option=egg_info
38
+ -C--global-option=--tag-build=""
39
+ --sdist
40
+ --wheel
41
+ --outdir dist/
42
+ .
0 commit comments