Update Hubspot Source to use API Incrementally #1930
Workflow file for this run
This file contains hidden or 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
| name: test destinations bigquery and redshift | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| env: | |
| ALL_DESTINATIONS: '["bigquery", "redshift"]' | |
| DLT_SECRETS_TOML: ${{ secrets.DLT_SECRETS_TOML }} | |
| RUNTIME__LOG_LEVEL: ERROR | |
| jobs: | |
| get_changed_sources: | |
| uses: ./.github/workflows/get_changed_sources.yml | |
| # Tests that require credentials do not run in forks | |
| if: ${{ !github.event.pull_request.head.repo.fork }} | |
| run_loader: | |
| name: test destinations bigquery and redshift | |
| needs: get_changed_sources | |
| if: needs.get_changed_sources.outputs.sources_list != '' | |
| # strategy: | |
| # fail-fast: false | |
| # matrix: | |
| # os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
| defaults: | |
| run: | |
| shell: bash | |
| runs-on: "ubuntu-latest" | |
| # Service containers to run with `container-job` | |
| services: | |
| # Label used to access the service container | |
| postgres: | |
| # Docker Hub image | |
| image: postgres | |
| # Provide the password for postgres | |
| env: | |
| POSTGRES_DB: dlt_data | |
| POSTGRES_USER: loader | |
| POSTGRES_PASSWORD: loader | |
| ports: | |
| - 5432:5432 | |
| # Set health checks to wait until postgres has started | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@master | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v4 | |
| with: | |
| python-version: "3.9" | |
| - name: Install dependencies | |
| run: make dev | |
| - name: create secrets.toml | |
| run: pwd && echo "$DLT_SECRETS_TOML" > sources/.dlt/secrets.toml | |
| # - name: Setup upterm session | |
| # uses: lhotari/action-upterm@v1 | |
| - run: | | |
| sources_list="${{ needs.get_changed_sources.outputs.sources_list }}" | |
| test_paths=$(echo "$sources_list" | awk '{for(i=1;i<=NF;i++) printf "tests/%s ", $i}') | |
| uv run pytest $test_paths | |
| if: runner.os != 'Windows' | |
| name: Run tests on Linux/macOS | |
| env: | |
| DESTINATION__POSTGRES__CREDENTIALS: postgresql://loader:loader@localhost:5432/dlt_data |