chore: black reformatting #1
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: TorchHub integration | |
| on: push | |
| jobs: | |
| src-test: | |
| name: TorchHub integration | |
| runs-on: ubuntu-latest | |
| # Timeout: https://stackoverflow.com/a/59076067/4521646 | |
| timeout-minutes: 10 | |
| strategy: | |
| matrix: | |
| python-version: [3.13] | |
| env: | |
| ACTIONS_ALLOW_UNSECURE_COMMANDS: True | |
| steps: | |
| - name: Install libnsdfile | |
| run: | | |
| sudo apt update | |
| sudo apt install libsndfile1-dev libsndfile1 | |
| - uses: actions/checkout@v5 | |
| - name: Extract branch name | |
| run: echo "::set-env name=BRANCH::${GITHUB_REF#refs/heads/}" | |
| - name: Check branch name | |
| run: echo $BRANCH | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install python dependencies | |
| run: | | |
| python -m pip install --upgrade pip --quiet | |
| python -m pip install numpy Cython --upgrade-strategy only-if-needed --quiet | |
| python -m pip install -r requirements/torchhub.txt --quiet | |
| python --version | |
| pip --version | |
| python -m pip list | |
| - name: TorchHub list | |
| run: | | |
| python -c "import torch; print(torch.hub.list('mpariente/asteroid:$BRANCH'))" | |
| - name: TorchHub help | |
| run: | | |
| python -c "import torch; print(torch.hub.help('mpariente/asteroid:$BRANCH', 'conv_tasnet'))" |