Better typing for _xview, _yview, frame (#29)
#113
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build | |
| on: [push, workflow_dispatch] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| container: amd64/archlinux:base | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| pacman -Syu --needed --noconfirm python-pipx python-pyqt5 python-pyqt6 python-wxpython | |
| pipx install --global hatch | |
| name: Install dependencies | |
| - run: hatch fmt --check | |
| name: Lint | |
| - run: hatch -vv env create dev | |
| name: Create editable installation | |
| - run: hatch build | |
| name: Package into tarball and wheel |