Skip to content

Make great circle metric more robust #53

Make great circle metric more robust

Make great circle metric more robust #53

Workflow file for this run

name: Run test suite
on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install package
run: |
pip install -e .[dev]
- name: Run test suite
run: |
pytest