Skip to content

assert approx

assert approx #12

Workflow file for this run

name: lint
on:
push:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
max-parallel: 6
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: black
run: |
black --color ocdata