Skip to content

Always run tests

Always run tests #65

Workflow file for this run

name: black
on: [push, pull_request]
jobs:
black:
name: black
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run black checks
run: black --check .