Skip to content

chore(deps): Update python-dotenv requirement from ~=1.0 to ~=1.2 #7

chore(deps): Update python-dotenv requirement from ~=1.0 to ~=1.2

chore(deps): Update python-dotenv requirement from ~=1.0 to ~=1.2 #7

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install ruff
- name: ruff check
run: ruff check .
- name: ruff format --check
run: ruff format --check .