CI test again

This commit is contained in:
IQuant 2024-11-26 17:16:35 +03:00
parent 3de4aee5d5
commit 5194b35310
3 changed files with 102 additions and 30 deletions

7
scripts/ci_version.py Normal file
View file

@ -0,0 +1,7 @@
import re
cargo_manifest = open("noita-proxy/Cargo.toml", "r").read()
version = re.findall('version = "(.*?)"', cargo_manifest)[0]
print("Version:", version)
assert version is not None