Skip to content

Refactor some get_assembly and get_study_runs to retry with different portals #5

Refactor some get_assembly and get_study_runs to retry with different portals

Refactor some get_assembly and get_study_runs to retry with different portals #5

Workflow file for this run

name: Linting
on:
push:
branches:
- "master"
- "develop"
pull_request:
branches:
- "master"
- "develop"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements-dev.txt
- name: Run Black
run: |
black . --check
- name: Run Ruff
run: |
ruff check .