Skip to content

Automated update: refresh ICEWatch data and site #730

Automated update: refresh ICEWatch data and site

Automated update: refresh ICEWatch data and site #730

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Install dependencies
run: uv sync --locked --dev
- name: Run Ruff
run: uv run ruff check --output-format=github .
- name: Run mypy
run: uv run mypy .
- name: Run pytest
run: uv run pytest .