Make CLI bootstrap Poetry-aware #577
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
| # This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Python package | |
| on: | |
| push: | |
| branches: [ "develop" ] | |
| tags: [ "*" ] | |
| pull_request: | |
| branches: [ "develop" ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14", "3.x" ] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: NiklasRosenstein/slap@gha/install/v1 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: { python-version: "${{ matrix.python-version }}" } | |
| - name: Install | |
| run: slap install --no-venv-check | |
| - name: Test | |
| run: slap test | |
| compatibility: | |
| name: Runtime config (Python ${{ matrix.python-version }}, Databind ${{ matrix.databind-version }}) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - python-version: "3.10" | |
| databind-version: "4.5.0" | |
| - python-version: "3.10" | |
| databind-version: "4.5.2" | |
| - python-version: "3.14" | |
| databind-version: "4.5.0" | |
| - python-version: "3.14" | |
| databind-version: "4.5.5" | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: { python-version: "${{ matrix.python-version }}" } | |
| - name: Install runtime with Databind ${{ matrix.databind-version }} | |
| run: python -m pip install . "databind==${{ matrix.databind-version }}" "typeapi==2.3.0" | |
| - name: Check dependency consistency | |
| run: python -m pip check | |
| - name: Load configuration | |
| run: python test/test_config_smoke.py | |
| documentation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Checkout branch if PR | |
| if: github.event_name == 'pull_request' | |
| run: git checkout -b $GITHUB_HEAD_REF | |
| - uses: NiklasRosenstein/slap@gha/install/v1 | |
| - name: Install | |
| run: slap install --extras docs --no-venv-check | |
| - name: Build documentation | |
| run: cd docs && novella --base-url pydoc-markdown/ | |
| - uses: JamesIves/github-pages-deploy-action@4.1.4 | |
| if: github.ref == 'refs/heads/develop' | |
| with: { branch: gh-pages, folder: docs/_site, ssh-key: "${{ secrets.DEPLOY_KEY }}" } |