add library_name
parameter to hf_hub_download
for better model tracking on the Hub.
#218
Workflow file for this run
This file contains 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: audiocraft_tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
run_tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/audiocraft_build | |
- name: Run unit tests | |
run: | | |
. env/bin/activate | |
make tests | |
- name: Run integration tests | |
run: | | |
. env/bin/activate | |
make tests_integ |