Skip to content

export image collection coverage to BQ #1

export image collection coverage to BQ

export image collection coverage to BQ #1

Workflow file for this run

name: Test
on:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --group dev
- name: Check code formatting
run: uv run ruff check
- name: Run tests
run: uv run pytest