Skip to content

If the tablet is not mapped to any monitor, print a comment #58

If the tablet is not mapped to any monitor, print a comment

If the tablet is not mapped to any monitor, print a comment #58

Workflow file for this run

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