Skip to content

add repograph drift comparisons #6

add repograph drift comparisons

add repograph drift comparisons #6

Workflow file for this run

name: python-verify
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install editable package
run: |
python -m pip install --upgrade pip
python -m pip install -e .
- name: Verify import
run: |
python -c "import repograph"
- name: Run tests
run: |
python -m pytest