Add CI script written in python

Francesco Pasa 1 month ago

ci   A +13

 1+#!/usr/bin/python
 2+
 3+
 4+def main():
 5+    print("Hello from python!")
 6+
 7+    with open("test.txt") as file:
 8+        print(file.read())
 9+
10+
11+if __name__ == "__main__":
12+    main()
13+

README.md   A +4

1+# Srcfort CI test
2+
3+This is a simple repo with a minimal CI script
4+used for testing srcfort in a realistic way.

test.txt   A +1

1+This is a test file