Skip to content

add workflow for linters #1

add workflow for linters

add workflow for linters #1

Workflow file for this run

name: Lint Code Base
on:
pull_request:
types:
- opened
- closed
- edited
- reopened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run linter
run: tox -e lint