feat(HTML)!: HTML class no longer inherits from str
#451
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: Python package | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
| os: [ubuntu-latest, windows-latest, macOS-latest] | |
| fail-fast: false | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev,test]" | |
| - name: Install | |
| run: | | |
| make install | |
| - name: Run unit tests | |
| run: | | |
| make test | |
| - name: pyright, flake8, black and isort | |
| run: | | |
| make check | |
| shiny: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| os: [ubuntu-latest] | |
| fail-fast: false | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: htmltools | |
| - uses: actions/checkout@v4 | |
| with: | |
| repository: posit-dev/py-shiny | |
| path: shiny | |
| fetch-depth: 0 | |
| - name: Install dev Shiny | |
| run: | | |
| python -m pip install --upgrade pip | |
| cd shiny | |
| pip install -e ".[dev,test]" | |
| - name: Check dev Shiny w/ regular Htmltools | |
| continue-on-error: true | |
| run: | | |
| cd shiny | |
| make test check | |
| - name: Install dev htmltools dependencies | |
| run: | | |
| cd htmltools | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev,test]" | |
| make install | |
| - name: Check dev Shiny w/ dev Htmltools | |
| run: | | |
| cd shiny | |
| make test check | |
| deploy: | |
| name: "Deploy to PyPI" | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'release' | |
| needs: [build] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Set up Python 3.10" | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev,test]" | |
| - name: "Build Package" | |
| run: | | |
| make dist | |
| # test deploy ---- | |
| - name: "Test Deploy to PyPI" | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| if: startsWith(github.event.release.name, 'TEST') | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_TEST_API_TOKEN }} | |
| repository_url: https://test.pypi.org/legacy/ | |
| ## prod deploy ---- | |
| - name: "Deploy to PyPI" | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| if: startsWith(github.event.release.name, 'htmltools') | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_API_TOKEN }} |