Skip to content

fixed formatting of cli subpackage and removed unused global declarat… #39

fixed formatting of cli subpackage and removed unused global declarat…

fixed formatting of cli subpackage and removed unused global declarat… #39

Workflow file for this run

name: Linting
# Run this workflow on any push or pull request to the develop branch
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
# Run the linting command using the cached venv
- name: Run flake8 linting
run: |
pip install flake8
flake8 src/hardtarget