feat: add primary key and record count validation to readiness report and evals #410
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 | |
pull_request: | |
types: | |
- synchronize | |
jobs: | |
dependency-analysis: | |
name: Dependency Analysis with Deptry | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Set up Python | |
uses: actions/setup-python@v6 | |
with: | |
python-version: "3.10" | |
- name: Set up uv | |
uses: astral-sh/[email protected] | |
- name: Install dependencies | |
run: uv sync --all-extras | |
# Job-specific step(s): | |
- name: Run Deptry | |
run: | | |
uv run deptry . |