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 07ab540 commit 0a18575Copy full SHA for 0a18575
.github/test.yaml renamed to .github/workflows/test.yaml
@@ -27,10 +27,22 @@ jobs:
27
python-version: ${{ matrix.python-version }}
28
cache: 'pip'
29
30
- - name: Install
+ - name: Check install local
31
run: |
32
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
42
+ pip install --force-reinstall dist/*.tar.gz
43
44
- - name: Check Import
45
+ - name: Check install wheel
46
47
+ pip install --force-reinstall dist/*.whl
48
python -c "import wherobots.db"
0 commit comments