Skip to content

add linting

add linting #4

Workflow file for this run

name: Python package
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -e .[dev]
- name: Lint with pylint
run: |
pylint .