-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit changes to break into separate prs
- Loading branch information
1 parent
c30dd66
commit 2944b5e
Showing
13 changed files
with
157 additions
and
372 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,44 @@ | ||
name: "Pull request checks" | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
|
||
permissions: read-all | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.head.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
code-quality: | ||
name: "Run code quality" | ||
uses: dbt-labs/actions/.github/workflows/code-quality.yml | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
check-command: "hatch run code-quality" | ||
python-version: ${{ vars.DBT_TEST_PYTHON_VERSION }} | ||
|
||
unit-tests: | ||
name: "Run unit tests" | ||
uses: dbt-labs/actions/.github/workflows/unit-tests.yml | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
test-command: "hatch run unit-tests:all" | ||
python-versions: ${{ vars.DBT_TEST_PYTHON_ALL_VERSIONS }} | ||
|
||
integration-tests: | ||
name: "Run unit tests" | ||
uses: dbt-labs/actions/.github/workflows/integration-tests.yml | ||
with: | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
test-command: "hatch run integration-tests:all" | ||
python-versions-ubuntu: ${{ vars.DBT_TEST_PYTHON_ALL_VERSIONS }} | ||
python-versions-macos: ${{ vars.DBT_TEST_PYTHON_VERSION }} | ||
python-versions-windows: ${{ vars.DBT_TEST_PYTHON_VERSION }} | ||
|
||
verify-build-artifacts: | ||
name: "Verify build artifacts" | ||
uses: dbt-labs/actions/.github/workflows/build-artifacts.yml@add-hatch-actions |
Oops, something went wrong.