Skip to content

Merge pull request #310 from giffels/fix-readthedocs-build #603

Merge pull request #310 from giffels/fix-readthedocs-build

Merge pull request #310 from giffels/fix-readthedocs-build #603

Workflow file for this run

name: Static Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[contrib]
- name: Lint with flake8
run: |
flake8 tardis tests setup.py
- name: Format with black
run: |
black tardis tests setup.py --diff --check --target-version py36