quick fix to make lv_test_screenshot read only #26
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: Test API JSON generator | |
| on: | |
| push: | |
| pull_request: | |
| # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurrency | |
| # Ensure that only one commit will be running tests at a time on each PR | |
| concurrency: | |
| group: ${{ github.ref }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| test_api_json: | |
| if: github.repository == 'lvgl/lvgl' | |
| runs-on: ubuntu-24.04 | |
| name: Test API JSON | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Doxygen and Latex dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install doxygen texlive-xetex texlive-binaries texlive-lang-english latexmk fonts-freefont-otf | |
| - name: Install requirements | |
| run: pip install -r scripts/gen_json/requirements.txt | |
| - name: Run test | |
| run: python3 tests/gen_json/test_gen_json.py |