docs(contributing): update docs to use uv #504
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: Python CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
AIRFLOW_TEST_MODE: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v5 | |
with: | |
enable-cache: true | |
version: "latest" | |
- name: Install dependencies | |
run: | | |
uv sync --group dev | |
- name: Run linters | |
run: make lint | |
- name: Run test | |
run: make test | |
- name: Coverage | |
run: make coverage | |
# CD part | |
# - name: Push dags to GCS | |
# not implemented yet |