fix(detections): allow azimuth=0 for the detection table #403
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: pull_requests | |
on: | |
pull_request: | |
branches: main | |
env: | |
UV_VERSION: "0.5.13" | |
jobs: | |
docs-client: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.9 | |
architecture: x64 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: ${{ env.UV_VERSION }} | |
- name: Install dependencies | |
run: uv pip install --system -e "client/.[docs]" | |
- name: Build documentation | |
run: sphinx-build client/docs/source client/docs/build -a -v | |
- name: Documentation sanity check | |
run: test -e client/docs/build/index.html || exit | |
triage: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/labeler@v5 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" |