Job add draft pr update docs #317
Workflow file for this run
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
on: | |
pull_request_target: | |
branches: | |
- main | |
merge_group: | |
branches: | |
- main | |
name: dbt Cloud Integration Tests | |
jobs: | |
unit: | |
if: "!contains(github.event.pull_request.labels.*.name, 'skip-ci')" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- check-docs | |
- test | |
- test-acceptance | |
steps: | |
- name: pull_request actions/checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '>=1.17.0' | |
- name: Install dependencies | |
run: make setup | |
- name: make ${{ matrix.target }} | |
run: make ${{ matrix.target }} | |
env: | |
DBT_CLOUD_ACCOUNT_ID: ${{ secrets.TEST_DBT_CLOUD_ACCOUNT_ID }} | |
DBT_CLOUD_TOKEN: ${{ secrets.TEST_DBT_CLOUD_TOKEN }} | |
DBT_CLOUD_HOST_URL: ${{ secrets.TEST_DBT_CLOUD_HOST_URL }} |