Skip to content

Commit

Permalink
Add pre-commit config (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
clausherther authored Apr 1, 2022
1 parent b3b36ac commit ac74340
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
repos:
- repo: local
hooks:
- id: dbt_build_postgres
name: dbt_build_postgres
entry: "dbt build --project-dir integration_tests -t postgres"
language: system
pass_filenames: false
- id: dbt_build_bigquery
stages: [push]
name: dbt_build_bigquery
entry: "dbt build --project-dir integration_tests -t bq"
language: system
pass_filenames: false
- id: dbt_build_snowflake
stages: [push]
name: dbt_build_snowflake
entry: "dbt build --project-dir integration_tests -t snowflake"
language: system
pass_filenames: false

0 comments on commit ac74340

Please sign in to comment.