├── .github └── workflows │ └── continuous-integration.yml ├── .pre-commit-config.yaml ├── .sqlfluff ├── .sqlfluffignore ├── Makefile ├── README.md ├── dbt_project.yml ├── profiles.yml ├── requirements.txt └── tangata_config.json /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/.sqlfluff -------------------------------------------------------------------------------- /.sqlfluffignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/README.md -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/profiles.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /tangata_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slve/dbt-github-workflow/HEAD/tangata_config.json --------------------------------------------------------------------------------