Feature manage conductor via classic plugin (#691) #279
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: Main eyeD3 workflow | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 0.9.x | |
| pull_request: | |
| branches: | |
| - master | |
| - 0.9.x | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| os: [Ubuntu, MacOS, Windows] | |
| python-version: ["3.14", "pypy-3.11", "3.10"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| # Python | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # Test data | |
| - name: Test data cache | |
| id: cache-test-data | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/eyeD3-test-data | |
| key: ${{ runner.os }}-test-data | |
| - name: Install test data | |
| # If the directory exists it is not re-downloaded, but symlinks are | |
| # restored, and that's needed after a cache is restored. | |
| run: make TEST_DATA_DIR=~ test-data | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install .[dev,test] .[art-plugin,yaml-plugin] | |
| # Run tests | |
| - name: Tests | |
| run: | | |
| make coverage | |
| make lint | |
| make check-manifest | |
| # XXX: What to do with coverage? Was using coverall, meh. Github pages? | |
| # XXX: Removed pypy3 because of some coverage module not found error... |