Merge pull request #14 from liamdugan/typecheck #93
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: Code Style | |
on: | |
[ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install deps | |
run: pip install "black[jupyter]" isort | |
- name: Ensure code is blackified | |
run: black . --check --diff | |
- name: Ensure imports are sorted | |
run: isort . --check --diff |