feat: V2 links updates #4559
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| python-version: | |
| - "3.12" | |
| - "3.13" | |
| - "3.14" | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| - macos-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| # - name: Lint | |
| # if: runner.os != 'Windows' | |
| # run: uv run prek run --all-files | |
| - name: Test on windows | |
| if: runner.os == 'Windows' | |
| shell: bash | |
| env: | |
| TMPDIR: 'D:\\a\\_temp' | |
| run: uv run pytest tests --block-network --record-mode=none | |
| - name: Test | |
| if: runner.os != 'Windows' | |
| run: uv run pytest tests --block-network --record-mode=none | |
| coverage: | |
| if: false # exclude on pystac v2 for now | |
| name: coverage | |
| runs-on: ubuntu-latest | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| - name: Install with dependencies | |
| run: uv sync --all-extras | |
| - name: Run coverage with orjson | |
| run: uv run --all-extras pytest tests --cov | |
| - name: Prepare ./coverage.xml | |
| # Ignore the configured fail-under to ensure we upload the coverage report. We | |
| # will trigger a failure for coverage drops in a later job | |
| run: uv run coverage xml --fail-under 0 | |
| - name: Upload All coverage to Codecov | |
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 | |
| if: ${{ env.GITHUB_REPOSITORY == 'stac-utils/pystac' }} | |
| with: | |
| files: ./coverage.xml | |
| fail_ci_if_error: false | |
| use_oidc: true | |
| - name: Check for coverage drop | |
| # This will use the configured fail-under, causing this job to fail if the | |
| # coverage drops. | |
| run: uv run coverage report | |
| without-orjson: | |
| if: false # exclude on pystac v2 for now | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| - name: Sync | |
| run: uv sync | |
| - name: Uninstall orjson | |
| run: uv pip uninstall orjson | |
| - name: Run tests | |
| run: uv run pytest tests | |
| check-benchmarks: | |
| # This checks to make sure any API changes haven't broken any of the | |
| # benchmarks. It doesn't do any actual benchmarking, since (IMO) that's not | |
| # appropriate for CI on GitHub actions. | |
| if: false # exclude on pystac v2 for now | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: "3.10" | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| enable-cache: true | |
| - name: Sync | |
| run: uv sync | |
| - name: Set asv machine | |
| run: uv run asv machine --yes | |
| - name: Check benchmarks | |
| run: uv run asv run -a repeat=1 -a rounds=1 HEAD | |
| docs: | |
| runs-on: ubuntu-latest | |
| if: false # exclude on pystac v2 for now | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| - name: Install pandoc | |
| run: sudo apt-get install pandoc | |
| - name: Sync | |
| run: uv sync --group docs | |
| - name: Check docs | |
| run: uv run make -C docs html SPHINXOPTS="-W --keep-going -n" |