Skip to content

Make all implicit re-exports explicit (#1758) #2749

Make all implicit re-exports explicit (#1758)

Make all implicit re-exports explicit (#1758) #2749

Workflow file for this run

name: code-quality
on:
pull_request:
branches:
- "*"
push:
branches:
- main
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Download datasets
run: uv run make download-datasets
- name: Run tests
run: uv run pytest
- name: Install pre-commit
uses: actions/cache@v3
with:
path: ~/.cache/pre-commit/
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
- name: Run pre-commit
run: uv run pre-commit run --all-files