feat(automouse): allows setting the toggled state from user space #263
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: Unit Tests | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - firmware[0-9]+ | |
| pull_request: | |
| paths: | |
| - 'builddefs/**' | |
| - 'quantum/**' | |
| - 'platforms/**' | |
| - 'tmk_core/**' | |
| - 'tests/**' | |
| - '*.mk' | |
| - 'Makefile' | |
| - '.github/workflows/unit_test.yml' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/qmk/qmk_cli | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install dependencies | |
| run: pip3 install -r requirements-dev.txt | |
| - name: Run tests | |
| run: qmk test-c |