fix the unit testr #147
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: Pytorch ASR lab test | |
on: [push] | |
jobs: | |
test-02-asr: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8.10' | |
- name: Install the dependencies | |
working-directory: ./LabsSolutions/02-pytorch-asr | |
run: python -m pip install -r requirements.txt | |
# - name: Test implementation | |
# working-directory: ./LabsSolutions/02-pytorch-asr | |
# run: python test_implementation.py | |