Design to verify that the weekly tagged models will execute successfully on the scheduled day.

I’m currently utilizing dbt tags to execute some of my models on a daily and weekly basis, and everything is running smoothly. However, I want to ensure in advance that the models scheduled to run weekly will execute successfully on their designated day.

The reason for this preemptive check is to prevent any potential failures on the scheduled days, which could disrupt downstream processes.

I understand that dbt compile is useful for identifying model dependency issues. However, my specific query pertains to verifying whether a model can execute error-free on its scheduled day without initiating a full dbt run . In essence, I’m seeking a method to confirm the model’s operational integrity without relying on actual data transformation.

Thanks!