Skip to content

Implement Keymap.key_get_mods_for_level() #23

Implement Keymap.key_get_mods_for_level()

Implement Keymap.key_get_mods_for_level() #23

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
strategy:
matrix:
os: ['ubuntu-22.04']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install libxkbcommon-dev
run: |
sudo apt-get install libxkbcommon-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install --edit .
- name: Lint with flake8
run: |
flake8 xkbcommon tests
- name: Test with pytest
run: |
pytest