Skip to content

feat: add CI/CD workflow for Databricks deployment #17

feat: add CI/CD workflow for Databricks deployment

feat: add CI/CD workflow for Databricks deployment #17

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python
run: uv python install 3.11
- name: Install the dependencies
run: uv sync
- name: Run pre-commit checks
run: |
uv run pre-commit run --all-files