Update summer_school_data.py header comment with new CLI #43
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: CI | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.11", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: # no need for the history | |
fetch-depth: 1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu | |
pip install --no-cache-dir --editable=".[dev,tts]" | |
- name: Test with pytest | |
run: | | |
pytest tests |