From 6a28c01f440c2732b7f3a986547fb6338c8a1a2f Mon Sep 17 00:00:00 2001 From: Debby Date: Sun, 8 Mar 2026 11:10:46 +0700 Subject: [PATCH] hello world --- dags/test_simple.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 dags/test_simple.py diff --git a/dags/test_simple.py b/dags/test_simple.py new file mode 100644 index 0000000..db4f246 --- /dev/null +++ b/dags/test_simple.py @@ -0,0 +1,14 @@ +from airflow import DAG +from airflow.operators.python import PythonOperator +from datetime import datetime + +def hello(): + print("hello world") + +with DAG( + dag_id="test_simple", + start_date=datetime(2026, 3, 1), + schedule_interval="@daily", + catchup=False +) as dag: + PythonOperator(task_id="hello", python_callable=hello) \ No newline at end of file