Skip to content

Bump astroquery from 0.4.6 to 0.4.7 #1584

Bump astroquery from 0.4.6 to 0.4.7

Bump astroquery from 0.4.6 to 0.4.7 #1584

Workflow file for this run

name: Black
on:
push:
pull_request:
merge_group:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "poetry"
- name: Install dependencies
run: |
pip install --upgrade pip
python -m pip install --upgrade poetry
poetry install
- name: Reformat the code with black
run: |
poetry run black . --check