Skip to content

Commit 44bb1a9

Browse files
committed
Add building to the CI tests
1 parent 8d3ac9a commit 44bb1a9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ jobs:
99
uses: actions/setup-python@master
1010
with:
1111
python-version: '3.10'
12+
- name: Install dev dependencies
13+
run : |
14+
pip install -r requirements/dev.txt
1215
- name: Lint
1316
run: |
14-
pip install -r requirements/dev.txt
1517
make lint
16-
run:
18+
- name: Build & check sdist & wheel
19+
run: |
20+
make dist/
21+
tests:
1722
runs-on: ${{ matrix.os }}
1823
strategy:
1924
matrix:

0 commit comments

Comments
 (0)