Skip to content

Merge pull request #13 from henrysky/dependabot/github_actions/action… #88

Merge pull request #13 from henrysky/dependabot/github_actions/action…

Merge pull request #13 from henrysky/dependabot/github_actions/action… #88

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install coveralls pydot graphviz pytest pytest-cov galpy astroquery numpy bokeh
pip install .
- name: Test mw-plot
run: >
python -m pytest --cov mw_plot --cov-report=xml tests/test_mwplot.py