Skip to content

build(deps-dev): bump eslint from 8.57.1 to 10.2.0 in /bindings/node #11

build(deps-dev): bump eslint from 8.57.1 to 10.2.0 in /bindings/node

build(deps-dev): bump eslint from 8.57.1 to 10.2.0 in /bindings/node #11

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