Skip to content

improved docstrings of SQLRow and SQLColumn #51

improved docstrings of SQLRow and SQLColumn

improved docstrings of SQLRow and SQLColumn #51

Workflow file for this run

name: Quality Analyzes
on: [push]
jobs:
build:
name: 'Code Quality (Ruff)'
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
# or specify more flags!
- name: Check with Ruff
run: ruff check dbastable/*