Skip to content

Added the script to extract column information #26

Added the script to extract column information

Added the script to extract column information #26

Workflow file for this run

name: Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ruff:
name: Check for style errors and common problems
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff>=0.8.0
- name: Run Ruff linter
run: |
ruff check .