Skip to content

Black fix CI

Black fix CI #164

Workflow file for this run

name: Style Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install Testing Dependencies
run: python -m pip install black interrogate
- name: Black
if: always()
run: python -m black -t py37 --check embetter tests setup.py