Skip to content

feat: implement data preprocessing and set up databricks connection (and create python package) #8

feat: implement data preprocessing and set up databricks connection (and create python package)

feat: implement data preprocessing and set up databricks connection (and create python package) #8

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
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