File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changes here will be overwritten by Copier
2- _commit : b2cdb6d
2+ _commit : a63c624
33_src_path : https://github.com/python-project-templates/base.git
44add_docs : true
55add_extension : python
Original file line number Diff line number Diff line change @@ -25,12 +25,7 @@ permissions:
2525
2626jobs :
2727 build :
28- runs-on : ${{ matrix.os }}
29-
30- strategy :
31- matrix :
32- os : [ubuntu-latest]
33- python-version : ["3.11"]
28+ runs-on : ubuntu-latest
3429
3530 steps :
3631 - name : Checkout
4136 - name : Setup Python
4237 uses : actions-ext/python/setup@6e1b91a408ea89f49bc8aff8724f83826f7b5446
4338 with :
44- version : ${{ matrix.python-version }}
39+ version : " 3.11 "
4540
4641 - name : Install dependencies
4742 run : make develop
6156 - name : Upload test results (Python)
6257 uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6358 with :
64- name : test-results-${{ matrix.os }}-${{ matrix.python-version }}
59+ name : test-results
6560 path : junit.xml
66- if : ${{ always() }}
61+ if : always()
6762
6863 - name : Publish test results
6964 uses : EnricoMi/publish-unit-test-result-action@d0a4676d0e0b938bc201470d88276b7c74c712b3 # v2.24.0
9186 - name : Upload distributions
9287 uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9388 with :
94- name : dist-${{matrix.os}}
89+ name : dist
9590 path : dist
Load diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ permissions:
1414jobs :
1515 docs :
1616 runs-on : ubuntu-latest
17- if : ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
17+ if : github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch'
1818 steps :
1919 - name : Checkout
2020 uses : actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2727 - name : Download distributions
2828 uses : actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
2929 with :
30- pattern : dist-ubuntu-latest*
30+ pattern : dist
3131 merge-multiple : true
3232 path : dist
3333 run-id : ${{ github.event.workflow_run.id }}
@@ -39,13 +39,13 @@ jobs:
3939 run : |
4040 uv pip install dist/*.whl
4141 uv pip install dist/*.whl --target . --no-deps
42- uv pip install yardang
42+ uv pip install " yardang[llms,themes]"
4343 if : github.event_name == 'workflow_run'
4444
4545 - name : Install from source (manual trigger)
4646 run : |
4747 uv pip install .[develop]
48- uv pip install yardang
48+ uv pip install " yardang[llms,themes]"
4949 if : github.event_name == 'workflow_dispatch'
5050
5151 - name : Build documentation
You can’t perform that action at this time.
0 commit comments