Skip to content

Disabling line len

Disabling line len #52

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
lintPython:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Update package index
run: sudo apt-get update
- name: Run Linter
run: |
pip install -e .[test]
ruff check .
lintYaml:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
config_data: "{extends: default, rules: {line-length: disable}}"