diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 43eb5b0..ab31747 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,15 @@ jobs: run: | pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt + - name: Check format with black + run: black --check . + + - name: Check style with flake8 + run: flake8 . + + - name: Check import sorting with isort + run: isort --check . + - name: Run model tests run: make model-test