Skip to content

Test Astrodbkit Dependencies #12

Test Astrodbkit Dependencies

Test Astrodbkit Dependencies #12

# This workflow will install the package on a regular schedule to check if there are any depenedency issues.
name: Test Astrodbkit Dependencies
on:
schedule:
- cron: '0 16 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# install package and requirements
pip install ".[all]"
- name: Test with pytest
run: |
pytest