Csse layout 536 input_data #814
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
black: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Install black | |
run: pip install "black>=22.1.0,<23.0a0" | |
- name: Print code formatting with black | |
run: black --diff . | |
- name: Check code formatting with black | |
run: black --check . | |
isort: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Install repo | |
run: pip install '.[lint]' | |
- name: Check import formatting with isort | |
run: isort --check-only --diff . | |
# TODO: Support flake8 when the repo is ready :) | |
# flake8: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Set up Python | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: "3.8" | |
# - name: Install flake8 | |
# run: pip install flake8 | |
# - name: Flake8 | |
# run: flake8 --count . | |
# TODO: Support mypy when the repo is ready | |
# mypy: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Set up Python | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: "3.8" | |
# - name: Install repo | |
# run: pip install -e '.[lint]' | |
# - name: mypy | |
# run: mypy . |