hidpp: add feature x1b04 flag sent by M510 4004 #478
Workflow file for this run
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: tests | |
| on: [push, pull_request] | |
| jobs: | |
| ubuntu-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.13] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Ubuntu dependencies for python 3.8 | |
| if: matrix.python-version == '3.8' | |
| run: | | |
| make install_apt | |
| - name: Install Ubuntu dependencies for python 3.13 | |
| if: matrix.python-version == '3.13' | |
| run: | | |
| make install_apt_python3.13 | |
| - name: Install Python dependencies | |
| run: | | |
| make install_pip PIP_ARGS='.["test"]' | |
| - name: Run tests on Ubuntu | |
| run: | | |
| make test | |
| - name: Upload coverage to Codecov | |
| if: github.ref == 'refs/heads/master' | |
| uses: codecov/codecov-action@v4.5.0 | |
| with: | |
| directory: ./coverage/reports/ | |
| env_vars: OS, PYTHON | |
| files: ./coverage.xml | |
| flags: unittests | |
| name: codecov-umbrella | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| macos-tests: | |
| runs-on: macos-latest | |
| strategy: | |
| matrix: | |
| python-version: [3.13] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up macOS dependencies | |
| run: | | |
| make install_brew | |
| - name: Add Homebrew's library directory to dyld search path | |
| run: | | |
| echo "DYLD_FALLBACK_LIBRARY_PATH=$(brew --prefix)/lib:$DYLD_FALLBACK_LIBRARY_PATH" >> $GITHUB_ENV | |
| - name: Install Python dependencies | |
| run: | | |
| make install_pip PIP_ARGS='.["test"]' | |
| - name: Run tests on macOS | |
| run: | | |
| pytest --cov --cov-report=xml | |
| - name: Upload coverage to Codecov | |
| if: github.ref == 'refs/heads/master' | |
| uses: codecov/codecov-action@v4.5.0 | |
| with: | |
| directory: ./coverage/reports/ | |
| env_vars: OS, PYTHON | |
| files: ./coverage.xml | |
| flags: unittests | |
| name: codecov-umbrella | |
| token: ${{ secrets.CODECOV_TOKEN }} |