Skip to content

Update readme

Update readme #8

Workflow file for this run

name: Python Application CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install uv tool, dependencies, and run tests
run: |
python -m pip install --upgrade pip
pip install uv # Install uv using pip
uv venv
source .venv/bin/activate
if [ -f requirements.txt ]; then uv pip install -r requirements.txt; fi
uv pip install pytest requests-mock requests
pytest dlt_bigquery/tests/test_utils.py
env:
PYTHONPATH: ${{ github.workspace }}