Skip to content

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

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 #4

Workflow file for this run

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