Skip to content

Codestyle and Linting #585

Codestyle and Linting

Codestyle and Linting #585

Workflow file for this run

# This workflow will install Python dependencies, run tests, run linting, and test building docs
name: Codestyle and Linting
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: # For on demand runs
schedule:
- cron: 0 0 * * * # Scheduled run every day at midnight
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pip setuptools wheel --upgrade
python -m pip install -e .[style]
- name: Lint with Black
run: |
black --check --diff hermes_core
- name: flake8
run: |
flake8 --count hermes_core