/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
.github/workflows/check_python_dependencies.yml
37 строк
941 B
Diana Huang
Revert "Merge ulmo.1 into release-ulmo"
27 май 2026, 23:07
Не верифицирован
27 май 2026, 23:07
3a8fdad
Код
Авторство
О чём код?
name: Check Python Dependencies on: pull_request: merge_group: jobs: check_dependencies: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.12"] steps: - name: Checkout Repository uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install repo-tools run: pip install edx-repo-tools[find_dependencies] - name: Install setuptool run: pip install setuptools - name: Run Python script run: | find_python_dependencies \ --req-file requirements/edx/base.txt \ --req-file requirements/edx/testing.txt \ --ignore https://github.com/edx/edx-name-affirmation \ --ignore https://github.com/mitodl/edx-sga \ --ignore https://github.com/open-craft/xblock-poll