1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-15 07:24:14 +02:00

Add e2e Testing for free threaded and Bump @action/cache from 4.0.0 to 4.0.3 (#1056)

* include freethread e2e testing and upgrade cache from 4.0.0 to 4.0.2

* include verify gil step and validated python version

* Rename files

* include ubuntu-arm runners for testing
This commit is contained in:
priya-kinthali 2025-03-24 21:49:17 +05:30 committed by mahabaleshwars
parent 02fa2e313f
commit 5866dc652c
43 changed files with 1355 additions and 10660 deletions

View file

@ -0,0 +1,3 @@
import sys
if __name__ == '__main__':
print(f"Using GIL: {sys._is_gil_enabled()}\n")