-
Notifications
You must be signed in to change notification settings - Fork 3
50 lines (40 loc) · 1.38 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black[jupyter] cython-lint flake8 isort pytest pytest-cov
pip install --verbose --editable .
- name: Check Python formatting with black
run: |
black --line-length 99 --diff --color .
black --line-length=99 --check .
- name: Check Cython formatting with cython-lint
run: |
cython-lint --max-line-length=99 --ignore=E741 .
- name: Check import order with isort
run: |
isort --profile=black --line-length=99 --check .
- name: Lint with flake8
uses: py-actions/flake8@v1
with:
max-line-length: "99"
exclude: "examples/*,fair_housing_guardrail/__init__.py"
- name: Test with pytest
run: |
python -m pytest --pyargs tests/test_fair_housing_classification.py --cov=fair_housing_guardrail