Skip to content

build(deps): bump wasmtime from 15.0.1 to 43.0.1 #8

build(deps): bump wasmtime from 15.0.1 to 43.0.1

build(deps): bump wasmtime from 15.0.1 to 43.0.1 #8

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