Skip to content

refactor, ci: upgrade linting & ci setup #405

refactor, ci: upgrade linting & ci setup

refactor, ci: upgrade linting & ci setup #405

Workflow file for this run

name: Test installation
on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.7
uses: actions/setup-python@v5
with:
python-version: 3.7
- name: Install hatch
run: pip install hatch
- name: Build
run: hatch build
- name: Install
run: pip install dist/*.whl
- name: Test import
run: python -c "import react_ipywidgets; import reacton"