Insert a space when undoing autocorrect (#1232) #32
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: Check generated files | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| gen-layouts: | |
| name: Layout list | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - run: python3 gen_layouts.py | |
| - name: "Run 'python3 gen_layouts.py' to update the generated files." | |
| run: git diff --exit-code | |
| check-layouts: | |
| name: Layout warnings | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - run: python3 check_layout.py | |
| - name: "Fix your layout accordingly or run 'python3 check_layout.py' to promote the warnings" | |
| run: git diff --exit-code | |
| check-compose: | |
| name: Compose key data | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - run: python3 srcs/compose/compile.py srcs/compose/{*.json,compose} > srcs/juloo.keyboard2/ComposeKeyData.java | |
| - name: "Run 'gradle test' to update the generated files." | |
| run: git diff --exit-code |