Slowing down the mouse wheel speed. #151
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: ubuntu | |
| on: [push, pull_request] | |
| jobs: | |
| e2e: | |
| strategy: | |
| matrix: | |
| include: | |
| - name: e2e-all | |
| script: make all | |
| - name: e2e-link | |
| script: make link | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run test | |
| run: ${{ matrix.script }} |