ry.yamafuji e05f9fc4be
Some checks failed
Python Test / python-test (push) Failing after 9s
未整理ファイルアップ
2025-12-22 00:26:42 +09:00

18 lines
377 B
Python

"""Airflow DAGの定義ファイル"""
from airflow import DAG
from airflow.operators.bash import BashOperator
from datetime import datetime
with DAG(
dag_id="run_job_py",
start_date=datetime(2024, 1, 1),
schedule_interval="@daily",
catchup=False,
) as dag:
run_job = BashOperator(
task_id="run_job",
bash_command="python main.py",
)