Skip to content

Fixes to migration from cals by block. #1

Fixes to migration from cals by block.

Fixes to migration from cals by block. #1

Workflow file for this run

name: Python CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest # Or macos-latest if needed
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12' # Specify your desired version
- name: Install Poetry
run: pip install poetry
- name: Set up project
run: poetry install -E cpu -E style
- name: Code Style
run: poetry pycodestyle banzai --count --max-line-length=120