Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Update docker-compose.yml #134

Update docker-compose.yml

Update docker-compose.yml #134

Workflow file for this run

name: Run code linters
on:
push:
branches:
- master
pull_request:
types:
- opened
- reopened
- synchronize
- review_requested
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8
run: |
flake8 **/*.py --max-line-length=119