Skip to content

Simplify install-extension output — just show the path clearly #5

Simplify install-extension output — just show the path clearly

Simplify install-extension output — just show the path clearly #5

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Run unit tests
run: python -m pytest tests/ -v --ignore=tests/test_regression_e2e.py
- name: Build package
run: |
python -m pip install build
python -m build
- name: Verify extension in wheel
run: python -c "import pywebflx.cli; print(pywebflx.cli._get_extension_dir())"