Skip to content

Refactoring with init #75

Refactoring with init

Refactoring with init #75

Workflow file for this run

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