Tenemos algo de progreso!

Un simple hello world y travis.yml para el CI.
This commit is contained in:
2021-11-11 16:54:19 +01:00
commit 1f25f45f0d
3 changed files with 9 additions and 0 deletions

7
.travis.yml Normal file
View File

@@ -0,0 +1,7 @@
language: python
python:
- "3.7"
install:
- "pip install -r requirements.txt"
script:
- "python3.7 objetivo1.py"

1
objetivo1.py Normal file
View File

@@ -0,0 +1 @@
print("Hello World :3")

1
requirements.txt Normal file
View File

@@ -0,0 +1 @@
pytest