/
ai-forever
/
diffusers
Обзор
Документация
Войти
/
ai-forever
/
diffusers
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
main
.github/workflows/pr_dependency_test.yml
31 строка
702 B
Younes Belkada
[`core`] Use python 3.8 in workflow and setup file (#5122)
20 сен 2023, 21:57
Не верифицирован
20 сен 2023, 21:57
914586f
Код
Авторство
О чём код?
name: Run dependency tests on: pull_request: branches: - main push: branches: - main concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true jobs: check_dependencies: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: python-version: "3.8" - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e . pip install pytest - name: Check for soft dependencies run: | pytest tests/others/test_dependencies.py