acid-drop- Hacking the planet from a LilyGo T-Deck using custom firmware |
git clone git://git.acid.vegas/acid-drop.git |
Log | Files | Refs | Archive | README | LICENSE |
check_conf.yml (832B)
1 name: Verify that lv_conf_internal.h matches repository state 2 on: 3 push: 4 pull_request: 5 6 jobs: 7 verify-conf-internal: 8 if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} 9 runs-on: ubuntu-latest 10 steps: 11 - name: Checkout 12 uses: actions/checkout@v2 13 with: 14 persist-credentials: false 15 fetch-depth: 0 16 - name: Setup Python 17 uses: actions/setup-python@v1 18 with: 19 python-version: 3.7 20 - name: Generate lv_conf_internal.h 21 run: python lv_conf_internal_gen.py 22 working-directory: scripts 23 - name: Check that repository is clean 24 run: git diff --exit-code >/dev/null 2>&1 || (echo "Please regenerate lv_conf_internal.h using scripts/lv_conf_internal_gen.py"; false)