Skip to content

Merge pull request #4 from trouze/feat/analyze-full-path #7

Merge pull request #4 from trouze/feat/analyze-full-path

Merge pull request #4 from trouze/feat/analyze-full-path #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install project
run: uv sync --all-extras --python ${{ matrix.python-version }}
- name: Lint
run: uv run ruff check .
- name: Typecheck
run: uv run mypy src
- name: Test
run: uv run pytest -q --cov=dbt_dag_opt --cov-report=term-missing