Skip to content

Commit f1c6182

Browse files
authored
Merge pull request #33 from DataRecce/feature/drc-691-update-run-recce-ci-in-pr1
Update CI config
2 parents cbc6356 + 45031a7 commit f1c6182

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/recce_ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ jobs:
1313
uses: actions/checkout@v3
1414
with:
1515
fetch-depth: 0
16+
1617
- name: Set up Python
1718
uses: actions/setup-python@v4
1819
with:
1920
python-version: "3.10.x"
21+
2022
- name: Install dependencies
2123
run: |
2224
pip install -r requirements.txt
2325
pip install recce-nightly
26+
2427
- name: Prepare dbt Base environment
2528
run: |
2629
gh repo set-default ${{ github.repository }}
@@ -32,6 +35,7 @@ jobs:
3235
env:
3336
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3437
WORKFLOW_BASE: ".github/workflows/dbt_base.yml"
38+
3539
- name: Prepare dbt Current environment
3640
run: |
3741
git checkout ${{ github.event.pull_request.head.sha }}
@@ -44,8 +48,9 @@ jobs:
4448

4549
- name: Run Recce CI
4650
run: |
47-
recce run --cloud --cloud-token ${{ secrets.RECCE_CLOUD_TOKEN }}
51+
recce run --cloud
4852
env:
53+
GITHUB_TOKEN: ${{ secrets.RECCE_CLOUD_TOKEN }}
4954
RECCE_STATE_PASSWORD: ${{ vars.RECCE_STATE_PASSWORD}}
5055

5156
- name: Upload DBT Artifacts

0 commit comments

Comments
 (0)