feat: add update_idc_tasks_model endpoint for bulk updating inactive models in single IDC projects #668
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: run-linters | |
| on: [pull_request] | |
| jobs: | |
| run-black: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up Python 3.9.23 | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: 3.9.23 | |
| - name: Debug Message - Check Github branch | |
| run: echo "Current Git branch is ${GITHUB_REF##*/}" | |
| - name: Install Black | |
| run: pip install black==23.1.0 | |
| - name: Run black . to format code. | |
| run: black . |