Skip to content

Refactored config file handling to use YAML format instead of JSON. #8

Refactored config file handling to use YAML format instead of JSON.

Refactored config file handling to use YAML format instead of JSON. #8

Workflow file for this run

name: Lint Code
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install flake8
- name: Run flake8
run: |
flake8 . --exclude venv --max-line-length=120