Skip to content

Make cabal check happy #521

Make cabal check happy

Make cabal check happy #521

Workflow file for this run

name: ci
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0' # weekly
jobs:
build:
runs-on: ubuntu-24.04
name: "python ${{ matrix.python-version }} xcbver ${{ matrix.xcbver }}"
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "pypy3.10"]
xcbver: [xcb-proto-1.16.0, xcb-proto-1.17.0, master]
steps:
- uses: actions/checkout@v4
- name: Set up python "${{ matrix.python-version }}"
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
- uses: haskell-actions/setup@v2
with:
ghc-version: '9.6'
cabal-version: latest
- run: sudo apt install x11-apps
- run: git clone https://gitlab.freedesktop.org/xorg/proto/xcbproto.git proto && cd proto && git checkout ${{ matrix.xcbver }}
- run: make -j XCBDIR=./proto/src check