docs: add more output for cli #137
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: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| # https://github.com/stac-utils/stacrs/issues/1 | |
| # - windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v3 | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Sync | |
| run: uv sync --no-install-project | |
| - name: Build directly with maturin | |
| run: uv run maturin dev --uv | |
| - name: Lint | |
| run: scripts/lint | |
| - name: Test | |
| run: scripts/test |