Hello Community,
I have the following question:
In a GCP Dataform workspace lets say you have an .sqlx “operations” file
config {
type: “operations”,
tags: [“someTag”]
}
You have the following:
SELECT a,b,c d from table
This sql code is incorrect, we got the following syntax error in GCP Dataform workspace
Syntax error: Expected end of input but got identifier “d”
In GitHub action I need to create the CI/CD data pipeline that is triggered when the code
is pushed to the remote branch.
Both github actions: dataform compile and dataform run --dry-run do not detect the syntax
errors. Please see the following issues:
https://github.com/dataform-co/dataform/issues/1530
https://github.com/dataform-co/dataform/issues/1532
Is there any task on GitHub actions that does detect the syntax errors?
I am not referring here about dataform run which it does, but it also executes all the
workflows which is something I do not want.
Thank you.