feat(cli): use new central Dockerfile locations, add capability to locate airbyte_repo_root, use multi-purpose CONNECTOR positional arg in CLI commands
#762
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: Dependency Analysis | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "airbyte_cdk/**" | |
| - "poetry.lock" | |
| - "pyproject.toml" | |
| pull_request: | |
| paths: | |
| - "airbyte_cdk/**" | |
| - "poetry.lock" | |
| - "pyproject.toml" | |
| jobs: | |
| dependency-analysis: | |
| name: Dependency Analysis with Deptry | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Set up Poetry | |
| uses: Gr1N/setup-poetry@v9 | |
| with: | |
| poetry-version: "2.0.1" | |
| - name: Install dependencies | |
| run: poetry install --all-extras | |
| # Job-specific step(s): | |
| - name: Run Deptry | |
| run: | | |
| poetry run deptry . |