Skip to content

Catch RuntimeError when repo does not exist #89

Catch RuntimeError when repo does not exist

Catch RuntimeError when repo does not exist #89

Workflow file for this run

name: CI/CD
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
UV_SYSTEM_PYTHON: 1
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "0.11.7"
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: |
uv sync --locked --all-extras --dev
- name: Run unit tests
run: |
uv run pytest tests/ -v