Skip to content

Refactor, unit tests, bug fixes #13

Refactor, unit tests, bug fixes

Refactor, unit tests, bug fixes #13

Workflow file for this run

name: Flake8
on:
push:
branches: [ main ]
paths:
- 'src/black_star/*'
pull_request:
branches: [ main ]
paths:
- 'src/black_star/*'
workflow_dispatch:
jobs:
pytest:
name: flake8
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install flake8
- name: Run flake8
run: |
python3 -m flake8 --max-line-length=119