Add all_orbits option to BigQuery client and faster downloading #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |