Skip to content

Commit 368df81

Browse files
committed
We don't really have docs :/
1 parent 16d503d commit 368df81

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

.github/workflows/on-push.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -111,34 +111,34 @@ jobs:
111111
run: |
112112
make type-check
113113
114-
docs-build:
115-
needs: [combine-environments, unit-tests]
116-
runs-on: ubuntu-latest
117-
118-
steps:
119-
- uses: actions/checkout@v5
120-
- uses: actions/download-artifact@v5
121-
with:
122-
name: combined-environments
123-
path: ci
124-
- name: Get current date
125-
id: date
126-
run: echo "date=$(date +%Y-%m-%d)" >> "${GITHUB_OUTPUT}"
127-
- uses: mamba-org/setup-micromamba@v2
128-
with:
129-
environment-file: ci/combined-environment-ci.yml
130-
environment-name: DEVELOP
131-
cache-environment: true
132-
cache-environment-key: environment-${{ steps.date.outputs.date }}
133-
cache-downloads-key: downloads-${{ steps.date.outputs.date }}
134-
create-args: >-
135-
python=3.13
136-
- name: Install uv
137-
run: |
138-
python -m pip install uv
139-
- name: Build documentation
140-
run: |
141-
make docs-build
114+
# docs-build:
115+
# needs: [combine-environments, unit-tests]
116+
# runs-on: ubuntu-latest
117+
118+
# steps:
119+
# - uses: actions/checkout@v5
120+
# - uses: actions/download-artifact@v5
121+
# with:
122+
# name: combined-environments
123+
# path: ci
124+
# - name: Get current date
125+
# id: date
126+
# run: echo "date=$(date +%Y-%m-%d)" >> "${GITHUB_OUTPUT}"
127+
# - uses: mamba-org/setup-micromamba@v2
128+
# with:
129+
# environment-file: ci/combined-environment-ci.yml
130+
# environment-name: DEVELOP
131+
# cache-environment: true
132+
# cache-environment-key: environment-${{ steps.date.outputs.date }}
133+
# cache-downloads-key: downloads-${{ steps.date.outputs.date }}
134+
# create-args: >-
135+
# python=3.13
136+
# - name: Install uv
137+
# run: |
138+
# python -m pip install uv
139+
# - name: Build documentation
140+
# run: |
141+
# make docs-build
142142

143143
integration-tests:
144144
needs: [unit-tests]
@@ -188,7 +188,7 @@ jobs:
188188

189189
distribution:
190190
runs-on: ubuntu-latest
191-
needs: [unit-tests, type-check, docs-build, integration-tests]
191+
needs: [unit-tests, type-check, integration-tests]
192192
if: |
193193
always() &&
194194
needs.unit-tests.result == 'success' &&

0 commit comments

Comments
 (0)