Skip to content

Commit d182dca

Browse files
committed
Fix CI version assertion to not hardcode version string
1 parent d850be2 commit d182dca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
python -c "
4141
import unrealmcp
4242
print(f'unrealmcp v{unrealmcp.__version__}')
43-
assert unrealmcp.__version__ == '1.0.0', f'Unexpected version: {unrealmcp.__version__}'
43+
assert unrealmcp.__version__, 'Version not set'
4444
"
4545
4646
- name: Verify all tool modules import via package

0 commit comments

Comments
 (0)