Skip to content

Add all_orbits option to BigQuery client and faster downloading #29

Add all_orbits option to BigQuery client and faster downloading

Add all_orbits option to BigQuery client and faster downloading #29

Workflow file for this run

name: Publish package
on:
push:
tags:
- "v**"
jobs:
# Publish a package to private PyPI
publish-package:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Checkout git repository
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Upgrade pip and install requests
run: python -m pip install --upgrade build requests
- name: Install
run: pip install .[tests]
- name: Run Tests
run: pytest .
- name: Build the distribution
run: python -m build --sdist --wheel --outdir dist/ .
- name: Publish mpcq to PyPI
uses: pypa/gh-action-pypi-publish@release/v1