Merge pull request #1785 from marcmerlin/master #305
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: C/C++ CI | |
| on: [ push, pull_request ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| cython: [cython3-legacy, cython3] | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: install cython | |
| run: | | |
| sudo apt-get update && sudo apt-get install -y ${{ matrix.cython }} | |
| cython3 --version | |
| - name: regenerate python bindings | |
| run: make -B -C bindings/python/rgbmatrix | |
| - name: make | |
| run: make |