Fixes to migration from cals by block. #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |