add crossmatch status results to get /table (#452) #63
This file contains hidden or 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: 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' |