Skip to content

refact: removing temperature extractor from project #4

refact: removing temperature extractor from project

refact: removing temperature extractor from project #4

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
paths-ignore:
- '**.md'
- 'docs/**'
- 'README*'
- '.gitignore'
pull_request:
branches: [ main, develop ]
paths-ignore:
- '**.md'
- 'docs/**'
- 'README*'
- '.gitignore'
workflow_dispatch:
jobs:
code-analysis:
name: Code Quality Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Install Python
run: uv python install
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Check formatting
run: uv run ruff format --check .
- name: Check linting
run: uv run ruff check .