Skip to content

Merged main - version 0.4.2 #6

Merged main - version 0.4.2

Merged main - version 0.4.2 #6

Workflow file for this run

name: CI Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
CI-Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Checkout this Repo
uses: actions/checkout@v4
with:
path: lips
- name: Install flake8
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: |
cd lips
flake8 lips/ --count --max-line-length=190 --statistics --verbose