Upload .huggingface/workflows/hello-world.yaml with huggingface_hub
Browse files
.huggingface/workflows/hello-world.yaml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Minimal docker-based workflow
|
| 2 |
+
# Runs a simple Python command on cpu-basic hardware
|
| 3 |
+
name: hello-world
|
| 4 |
+
image: python:3.12
|
| 5 |
+
command: ["python", "-c", "print('Hello from HF Actions!')"]
|