Skip to content

Disabled TEXTINPUT events to handle KEYDOWN events. #142

Disabled TEXTINPUT events to handle KEYDOWN events.

Disabled TEXTINPUT events to handle KEYDOWN events. #142

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: brew setup
if: matrix.os == 'macos-latest'
run: brew install automake autoconf pkg-config libpng
- name: generate configure script
run: ./autogen.sh
- name: configure
run: ./configure --with-tests
- name: make
run: make -j 2
- name: make check
run: make check
- name: make distcheck
run: make -j 2 distcheck