Skip to content

Merge branch 'develop' #276

Merge branch 'develop'

Merge branch 'develop' #276

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the latest code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
- name: Install dependencies
run: python -m pip install -U -r requirements-dev.txt
- name: Check formatting
run: python -m black --check .