Initial Commit
This commit is contained in:
22
rpi-rgb-led-matrix-master/.github/workflows/c-cpp.yml
vendored
Normal file
22
rpi-rgb-led-matrix-master/.github/workflows/c-cpp.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
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
|
||||
Reference in New Issue
Block a user