Skip to content

Support XKB_CONTEXT_NO_SECURE_GETENV flag #32

Support XKB_CONTEXT_NO_SECURE_GETENV flag

Support XKB_CONTEXT_NO_SECURE_GETENV flag #32

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
strategy:
matrix:
os: ['ubuntu-24.04']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install libxkbcommon-dev
run: |
sudo apt-get install libxkbcommon-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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