Skip to content

feat: Add required class to form widget div attributes (#35) #296

feat: Add required class to form widget div attributes (#35)

feat: Add required class to form widget div attributes (#35) #296

Workflow file for this run

name: Lint
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install Ruff
run: python -m pip install --upgrade ruff
- name: Ruff check
run: ruff check .
- name: Ruff format (check only)
run: ruff format --check