refactor(cli): split cli.py into cli/ package #46
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: | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-and-build: | |
| name: Lint and build | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install package and dev tools | |
| run: uv pip install -e ".[dev]" | |
| - name: Black (pyproject.toml [tool.black]) | |
| run: uv run black --check gopro_api | |
| - name: Pylint (pyproject.toml [tool.pylint]) | |
| run: uv run pylint gopro_api --recursive=y | |
| - name: Build wheel and sdist (pyproject.toml [build-system]) | |
| run: uv build | |
| docs: | |
| name: Build documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install docs dependencies | |
| run: uv pip install -e ".[docs]" | |
| - name: Build MkDocs site (--strict) | |
| run: uv run mkdocs build --strict |