Skip to content

Add possibility to read simbad table #76

Add possibility to read simbad table

Add possibility to read simbad table #76

Workflow file for this run

---
name: Unittests
on:
pull_request:
branches: [main]
types: [opened, synchronize]
jobs:
unittests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install mamba
uses: mamba-org/setup-micromamba@v2
with:
environment-file: environment.yml
create-args: python=${{ matrix.python-version }}
init-shell: bash
- name: Unit tests
shell: bash -leo pipefail {0}
env:
PYTHONPATH: .
run: pytest --durations=10 --color=yes .