Skip to content

build(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /bindings/node #13

build(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /bindings/node

build(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /bindings/node #13

Workflow file for this run

name: Python CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
concurrency:
group: python-ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install project (dev)
run: pip install -e ".[dev]"
- name: Ruff check
run: ruff check bundle scripts tests
- name: Mypy (strict modules)
run: mypy bundle/validate_manifest.py tests
- name: Pytest
run: pytest tests -v