Documented InstallPackage.

This commit is contained in:
Patrick Lehmann
2025-09-02 07:45:26 +02:00
parent e5b29528b7
commit d62ba6c06b
3 changed files with 113 additions and 12 deletions

View File

@@ -93,7 +93,7 @@ jobs:
run: |
python -m pip install -v --disable-pip-version-check (Get-Item .\install\*.whl).FullName
- name: 📦 Run application tests (Ubuntu/macOS)
- name: 📦 Run Package Version Check (Ubuntu/macOS)
if: ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
run: |
set +e
@@ -116,7 +116,7 @@ jobs:
exit 1
fi
- name: 📦 Run application tests (Windows)
- name: 📦 Run Package Version Check (Windows)
if: ( matrix.system == 'windows' || matrix.system == 'windows-arm' )
run: |
$result=$(python -c "from ${{ inputs.package_name }} import __version__; print(f""Package version: {__version__}"")")