Skip to content

Commit 0a18575

Browse files
committed
maybe add test
1 parent 07ab540 commit 0a18575

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/test.yaml renamed to .github/workflows/test.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,22 @@ jobs:
2727
python-version: ${{ matrix.python-version }}
2828
cache: 'pip'
2929

30-
- name: Install
30+
- name: Check install local
3131
run: |
3232
pip install ".[test]"
33+
python -c "import wherobots.db"
34+
35+
- name: Check build
36+
run: |
37+
pip install poetry
38+
poetry build
39+
40+
- name: Check install sdist
41+
run: |
42+
pip install --force-reinstall dist/*.tar.gz
43+
python -c "import wherobots.db"
3344
34-
- name: Check Import
45+
- name: Check install wheel
3546
run: |
47+
pip install --force-reinstall dist/*.whl
3648
python -c "import wherobots.db"

0 commit comments

Comments
 (0)