bump: version bump to v0.6.3 #441
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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| # Thorough configurable options can be found at: | |
| # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
| name: general-check | |
| on: | |
| push: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| timeout-minutes: 20 | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.10", "3.12", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| - name: Download large files | |
| run: | | |
| curl -L https://github.com/Music-and-Culture-Technology-Lab/omnizart/releases/download/checkpoints-20211001/resource.zip -o resource.zip | |
| unzip resource.zip | |
| mv resource/* tests/resource | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libsndfile1 ffmpeg portaudio19-dev | |
| ./scripts/install.sh | |
| omnizart download-checkpoints --output-path ./ | |
| pip install flake8 pylint pytest pytest-cov pytest-mock | |
| - name: Check with linters | |
| run: | | |
| make lint | |
| - name: Test with pytest | |
| run: | | |
| make test |