Add global portamento time mode setting to fix compatibility with older MIDI files #235
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: Codespell Linter | |
| on: | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| codespell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| # Run Codespell to check for typos | |
| - name: Run Codespell | |
| uses: codespell-project/actions-codespell@v2 | |
| with: | |
| ignore_words_list: READD,caf,rin,datas,Claus,lins | |
| skip: ./.git,*.pdf,./AUTHORS,./THANKS,./contrib |