If the tablet is not mapped to any monitor, print a comment #58
Workflow file for this run
This file contains 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: hatch | |
on: [push, pull_request] | |
env: | |
UBUNTU_PACKAGES: python3-gi | |
UBUNTU_TEST_PACKAGES: gobject-introspection pkgconf libcairo2-dev libgirepository-1.0-dev | |
PIP_PACKAGES: hatch | |
jobs: | |
hatch-fmt: | |
name: hatch format | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: linuxwacom/libwacom/.github/actions/pkginstall@master | |
with: | |
apt: $UBUNTU_PACKAGES | |
pip: $PIP_PACKAGES | |
- run: hatch fmt --check | |
hatch-test: | |
name: hatch run test | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: linuxwacom/libwacom/.github/actions/pkginstall@master | |
with: | |
apt: $UBUNTU_PACKAGES $UBUNTU_TEST_PACKAGES | |
pip: $PIP_PACKAGES | |
- run: hatch run test |