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 c2285e3 commit aa5860bCopy full SHA for aa5860b
.github/workflows/test.yml
@@ -16,6 +16,23 @@ concurrency:
16
cancel-in-progress: true
17
18
jobs:
19
+ test-wip:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - name: Set up Python
24
+ uses: actions/setup-python@v4
25
+ with:
26
+ python-version: "3.x"
27
+ - name: Install tox
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install tox
31
+ - name: Test
32
+ shell: bash
33
34
+ tox run -e py --installpkg `find dist/*.tar.gz`
35
+
36
package:
37
runs-on: ubuntu-latest
38
steps:
0 commit comments