Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

fix(deps): update dependency python-dotenv to >=1.2.1 #627

fix(deps): update dependency python-dotenv to >=1.2.1

fix(deps): update dependency python-dotenv to >=1.2.1 #627

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
merge_group:
workflow_dispatch:
permissions:
contents: read
jobs:
mypy:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Install uv
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
with:
enable-cache: true
- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version-file: .python-version
- name: Install dependencies
run: uv sync --all-extras --dev
- name: mypy
run: uv run mypy .
ruff:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Install uv
uses: astral-sh/setup-uv@803947b9bd8e9f986429fa0c5a41c367cd732b41 # v7.2.1
with:
enable-cache: true
- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version-file: .python-version
- name: Install dependencies
run: uv sync --all-extras --dev
- name: ruff
run: uv run ruff check --output-format=github .