Skip to content

add crossmatch status results to get /table (#452) #63

add crossmatch status results to get /table (#452)

add crossmatch status results to get /table (#452) #63

Workflow file for this run

name: Build wheel
on:
- push
jobs:
build-wheel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v6
- name: Build wheel
run: make wheel
- name: Upload wheel artifact
uses: actions/upload-artifact@v4
with:
name: wheel
path: dist/*.whl
test-wheel:
runs-on: ubuntu-latest
needs: build-wheel
steps:
- name: Set up uv
uses: astral-sh/setup-uv@v6
- name: Download wheel artifact
uses: actions/download-artifact@v5
with:
name: wheel
path: dist
- name: Install wheel as tool
run: uv tool install --from dist/*.whl "app"
- name: Check CLI help
run: 'app --help'