feat(dj): add low-memory DJ mix MP3 export #3
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| windows-quality: | |
| name: Windows hk quality gates | |
| runs-on: windows-latest | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_INCREMENTAL: 0 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Install pinned mise tools | |
| uses: jdx/mise-action@v4 | |
| with: | |
| version: 2026.7.10 | |
| install: true | |
| cache: true | |
| - name: Check pre-commit hook | |
| run: mise run hooks:pre-commit | |
| - name: Check pre-push hook | |
| run: mise run hooks:pre-push |