Skip to content

Commit aa5860b

Browse files
committed
WIP
1 parent c2285e3 commit aa5860b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,23 @@ concurrency:
1616
cancel-in-progress: true
1717

1818
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+
run: |
34+
tox run -e py --installpkg `find dist/*.tar.gz`
35+
1936
package:
2037
runs-on: ubuntu-latest
2138
steps:

0 commit comments

Comments
 (0)