Skip to content

Commit a6bf049

Browse files
authored
chore: simple run emd after build
1 parent 901f531 commit a6bf049

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build-package.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,19 @@ jobs:
3939
- name: Build wheel
4040
run: poetry build -f wheel
4141

42+
- name: Create virtual environment
43+
run: python -m venv venv
44+
45+
- name: Install wheel
46+
run: |
47+
source venv/bin/activate
48+
pip install dist/*.whl
49+
50+
- name: Run the wheel
51+
run: |
52+
source venv/bin/activate
53+
emd
54+
4255
- name: Upload wheel artifact
4356
uses: actions/upload-artifact@v4
4457
with:

0 commit comments

Comments
 (0)