Allow create_text to accept multiple texts and materials fixes #1012 #1392
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
| # 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: Docs | |
| on: | |
| push: | |
| branches: [master, v2] | |
| pull_request: | |
| branches: [master, v2] | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [3.12] | |
| env: | |
| FURY_OFFSCREEN: true | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup Headless | |
| run: ci/setup_headless.sh | |
| - name: Install Dependencies | |
| run: | | |
| python -c "import sys; print(sys.version)" | |
| python -m pip install -U pip setuptools>=30.3.0 wheel | |
| python -m pip install -U -r requirements/default.txt | |
| python -m pip install -U -r requirements/optional.txt | |
| python -m pip install -U -r requirements/doc.txt | |
| - name: Install FURY | |
| run: pip install . | |
| - name: Build docs | |
| run: | | |
| cd docs | |
| make -C . html-no-examples | |
| # - name: Deploy Devs | |
| # iff: success() && github.ref == 'refs/heads/master' | |
| # uses: JamesIves/github-pages-deploy-action@v4 | |
| # with: | |
| # ssh-key: {{ secrets.ACTIONS_DEPLOY_KEY }} | |
| # repository-name: fury-gl/fury-website | |
| # folder: ./docs/build/html | |
| # target-folder: dev | |
| # - name: Update last release | |
| # iff: success() && github.ref == 'refs/heads/master' | |
| # uses: JamesIves/github-pages-deploy-action@v4 | |
| # with: | |
| # ssh-key: {{ secrets.ACTIONS_DEPLOY_KEY }} | |
| # repository-name: fury-gl/fury-website | |
| # folder: ./docs/build/html-web-only | |
| # target-folder: v0.10.x | |
| # clean: false |