fix: remove stale include of deleted uci_ui_main_patch.h in uci.c #7
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: CI | |
| on: | |
| push: | |
| branches: [ master, main ] | |
| pull_request: | |
| branches: [ master, main ] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install readline (needed by uci-shell) | |
| run: sudo apt-get update && sudo apt-get install -y libreadline-dev | |
| - name: Build | |
| run: make | |
| - name: Test | |
| run: make test | |
| - name: Build shell binary | |
| run: make uci-shell | |
| - name: Verify binary | |
| run: test -f uci-shell && echo "✅ uci-shell built successfully" |