Skip to content

remove no_hdu parameter, and replace by no_plotting, no_catalog, and … #244

remove no_hdu parameter, and replace by no_plotting, no_catalog, and …

remove no_hdu parameter, and replace by no_plotting, no_catalog, and … #244

Workflow file for this run

name: Run isort
on:
push:
pull_request:
merge_group:
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
cache-dependency-path: setup.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install isort
pip install -e .
- name: Reformat the code with isort
run: |
isort . --diff