Skip to content

Merge pull request #22 from mebdivio/addingAttune #5

Merge pull request #22 from mebdivio/addingAttune

Merge pull request #22 from mebdivio/addingAttune #5

Workflow file for this run

name: Lint
on: push
jobs:
lint:
name: Lint documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install black flake8
- name: Run Black
run: black . --check --diff
- name: Run Flake8
run: flake8