Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DraftAdd recce cloud compatible output #19

Merged
merged 3 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/dbt_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:
name: duckdb
path: jaffle_shop.duckdb

- uses: actions/upload-artifact@v4
- name: Upload DBT Artifacts
uses: actions/upload-artifact@v4
with:
name: target
path: target/
11 changes: 8 additions & 3 deletions .github/workflows/recce_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Install Recce
run: |
pip install recce
- name: Prepare dbt Base environment
run: |
Expand All @@ -48,7 +46,13 @@ jobs:
run: |
recce run --github-pull-request-url ${{ github.event.pull_request.html_url }}

- name: Archive Recce State File
- name: Upload DBT Artifacts
uses: actions/upload-artifact@v4
with:
name: target
path: target/

- name: Upload Recce State File
uses: actions/upload-artifact@v4
id: recce-artifact-uploader
with:
Expand Down Expand Up @@ -91,3 +95,4 @@ jobs:
uses: thollander/actions-comment-pull-request@v2
with:
filePath: recce_summary.md
comment_tag: recce
Loading