Skip to content

Type checking fixes, colors, and speedup for check script #6

Type checking fixes, colors, and speedup for check script

Type checking fixes, colors, and speedup for check script #6

name: Build and Test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
cache: "pip"
- run: pip install -r requirements.txt
- name: Build Core
run: hatch build
working-directory: ./core
- name: Test Core
run: hatch test
working-directory: ./core
- name: Check Types Core
run: mypy .
working-directory: ./src/core
- name: Build Studio
run: hatch build
working-directory: ./studio
- name: Test Studio
run: hatch test
working-directory: ./studio
- name: Check Types Studio
run: mypy .
working-directory: ./src/studio