Skip to content

Bump python-dotenv from 1.0.1 to 1.2.2 #63

Bump python-dotenv from 1.0.1 to 1.2.2

Bump python-dotenv from 1.0.1 to 1.2.2 #63

Workflow file for this run

name: Lint(Ruff)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, 3.11, 3.12, 3.13, 3.14]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: |
ruff check .