From e6025887b485209c864a31856b2841fbb9143ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Jos=C3=A9=20Pereira?= Date: Tue, 30 Jun 2026 10:45:08 -0300 Subject: [PATCH] ci: Add test action MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick José Pereira --- .github/workflows/test.yml | 54 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..b61a98ef --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,54 @@ +name: Test + +on: + pull_request: + push: + branches: + - master + +jobs: + test: + name: Generate and test (Python ${{ matrix.python-version }}) + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + python-version: ['3.9', '3.10', '3.11', '3.12'] + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + submodules: recursive + + - 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 jinja2 + + - name: Generate message definitions + run: generate/generate-python.py --output-dir=brping + + - name: Verify core generated files exist + run: | + for f in definitions.py device.py ping1d.py ping360.py; do + test -s "brping/$f" || { echo "Missing or empty generated file: brping/$f"; exit 1; } + done + + - name: Install package + run: pip install . + + - name: Check generated code compiles + run: python -m compileall -q brping + + - name: Check package imports + run: python -c "import brping; print('brping imported successfully')" + + - name: Test message API + run: python brping/pingmessage.py