Skip to content

macos 15 wheels (#30) #345

macos 15 wheels (#30)

macos 15 wheels (#30) #345

Workflow file for this run

name: push actions
on: [push]
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
poetry-version: [2.1]
os: [ubuntu-24.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3.0.2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: poetry install
run: poetry install
- name: mypy
run: poetry run mypy simple_html
- name: run bench (pure python)
run: poetry run python -m bench.run
- name: mypyc
run: poetry run mypyc simple_html/core.py
- name: run tests
run: poetry run pytest
- name: run bench (compiled)
run: poetry run python -m bench.run
- name: linting
run: poetry run ruff check