CI: Add test execution step to build and release workflows
Some checks failed
Build Tamigo CLI / Build Linux Binary (pull_request) Successful in 54s
Build Tamigo CLI / Build Windows Binary (pull_request) Failing after 18s

This commit is contained in:
Daniel Dybing
2026-03-14 12:01:07 +01:00
parent b5025bf7ec
commit 987ce19aec
2 changed files with 6 additions and 0 deletions

View File

@@ -21,6 +21,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python3 test_export.py
- name: Build
run: pyinstaller --onefile --name tamigo-cli tamigo.py
- name: Upload Linux Artifact
@@ -53,6 +55,7 @@ jobs:
export TEMP=C:\\\\temp && \
mkdir -p /src/build /src/dist_win && \
pip install -r requirements.txt && \
python3 test_export.py && \
pyinstaller --onefile --name tamigo-cli \
--workpath /src/build \
--distpath /src/dist_win \