Skip to content

removing unused code and adding tests #6

removing unused code and adding tests

removing unused code and adding tests #6

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install dependencies
run: pip install flake8 black
- name: Run Black (Code Formatting)
run: black --line-length=120 src/workbench_bridges tests
- name: Run Flake8 (Linting)
run: flake8 src/workbench_bridges tests