Skip to content

Revert "still a lot of work to do, but has basic structure there" #16

Revert "still a lot of work to do, but has basic structure there"

Revert "still a lot of work to do, but has basic structure there" #16

Workflow file for this run

name: Run Tests
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install black
run: pip install black
- name: Run black
run: black . --check