generated from dbt-labs/dbt-oss-template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* first pass at testing core +common branches * fix vars * check out the right repo * remove extra s * rename workflow * add pull request logic * remove tox dependency * add another pip freeze * force reinstall * remove s * add some debugging * add questions * cat file * remove postgres setup * clean up and add comments * conditionally fill refs * fix event_name * edit run-name * edit run-name * cleanup inputs * remove echos * flip conditional * add quotes? * more var tweaks * add parens? * add back fucntional tests * remove typo * split out ref resolution * fix pip install * add support of skipping tests with label * basic cleanup * fix label logic * add some mroe debugging * testing * testing * fix conditional, remove bebugging * fix job names for clarity * make titles even more clear * make testing placeholder for now * put back commented out testing structure * change pip upgrade * remove debug statements
- Loading branch information
Showing
4 changed files
with
301 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ on: | |
merge_group: | ||
types: [checks_requested] | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
permissions: read-all | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ on: | |
merge_group: | ||
types: [checks_requested] | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
permissions: read-all | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# **what?** | ||
# The purpose of this workflow is to trigger CI to run for each | ||
# on a regular cadence. This will also test core + common to prevent breaks. | ||
# If the CI workflow fails, it will post to #dev-core-alerts to raise awareness. | ||
|
||
# **why?** | ||
# Ensures dbt-common is always shippable and not broken. | ||
# Also, can catch any dependencies shifting beneath us that might | ||
# introduce breaking changes (could also impact Cloud). | ||
|
||
# **when?** | ||
# Mainly on a schedule of 9:00, 13:00, 18:00 UTC everyday. | ||
# Manual trigger can also test on demand | ||
|
||
name: Scheduled Testing [ placeholders] | ||
|
||
on: | ||
# schedule: | ||
# - cron: '0 9,13,18 * * *' # 9:00, 13:00, 18:00 UTC | ||
workflow_dispatch: # for manual triggering | ||
|
||
|
||
# no special access is needed | ||
permissions: read-all | ||
|
||
jobs: | ||
run_tests: | ||
# uses: dbt-labs/actions/.github/workflows/release-branch-tests.yml@main | ||
# with: | ||
# workflows_to_run: '["ci_tests.yml", "build.yml", "ci_dbt_core_testing.yml"]' | ||
# secrets: inherit | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Placeholder | ||
run: echo "This is a placeholder job" |