fix: Add group_id and user_partition_id support to Cohorts API v1 #17003
Workflow file for this run
This file contains hidden or 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: 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@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| 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/mitodl/edx-sga \ | |
| --ignore https://github.com/open-craft/xblock-poll |