Skip to content

podcast: target 15-minute episodes for single papers #19

podcast: target 15-minute episodes for single papers

podcast: target 15-minute episodes for single papers #19

Workflow file for this run

name: Pytest
on:
push:
branches:
- "**"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PYTHONUNBUFFERED: "1"
HF_HOME: ~/.cache/huggingface
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
- name: Cache Hugging Face models
uses: actions/cache@v4
with:
path: ~/.cache/huggingface
key: ${{ runner.os }}-hf-${{ hashFiles('requirements.txt', 'config.yaml') }}
restore-keys: |
${{ runner.os }}-hf-
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Run pytest
run: pytest -q