Skip to content

Commit 2915805

Browse files
authored
Merge pull request #19 from DataRecce/chore/add-the-workflow-for-recc-cloud
2 parents acdec80 + d11b8cc commit 2915805

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/dbt_base.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
name: duckdb
3636
path: jaffle_shop.duckdb
3737

38-
- uses: actions/upload-artifact@v4
38+
- name: Upload DBT Artifacts
39+
uses: actions/upload-artifact@v4
3940
with:
4041
name: target
4142
path: target/

.github/workflows/recce_ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
- name: Install dependencies
2121
run: |
2222
pip install -r requirements.txt
23-
- name: Install Recce
24-
run: |
2523
pip install recce
2624
- name: Prepare dbt Base environment
2725
run: |
@@ -48,7 +46,13 @@ jobs:
4846
run: |
4947
recce run --github-pull-request-url ${{ github.event.pull_request.html_url }}
5048
51-
- name: Archive Recce State File
49+
- name: Upload DBT Artifacts
50+
uses: actions/upload-artifact@v4
51+
with:
52+
name: target
53+
path: target/
54+
55+
- name: Upload Recce State File
5256
uses: actions/upload-artifact@v4
5357
id: recce-artifact-uploader
5458
with:
@@ -91,3 +95,4 @@ jobs:
9195
uses: thollander/actions-comment-pull-request@v2
9296
with:
9397
filePath: recce_summary.md
98+
comment_tag: recce

0 commit comments

Comments
 (0)