Skip to content

Commit a1be287

Browse files
authored
Merge branch 'main' into feat/add-tutorial-for-pixi-build-rattler-build
2 parents d7b289d + b3411b3 commit a1be287

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+986
-802
lines changed

.github/workflows/ci.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -131,21 +131,26 @@ jobs:
131131
key: ${{ hashFiles('pixi.lock') }}
132132
save-if: ${{ github.ref == 'refs/heads/main' }}
133133

134-
- name: Verify CLI documentation
134+
- name: Remove the generated CLI documentation
135135
run: |
136-
# Remove the generated CLI documentation to make sure we don't accidentally leave removed documentation
137136
find docs/reference/cli -type f -name '*.md' -exec grep -q '<!--- This file is autogenerated. Do not edit manually! -->' {} \; -print0 | xargs -0 rm
138137
139-
# Regenerate CLI documentation
138+
- name: Regenerate CLI documentation
139+
run: |
140140
pixi run generate-cli-docs
141141
142-
# Check if there are any changes
142+
- name: Check if there are any changes
143+
run: |
143144
if ! git diff --quiet; then
144145
echo "Error: Generated CLI documentation differs from committed version"
145146
echo "Please run 'pixi run generate-cli-docs' to regenerate the documentation and commit the changes."
146147
git diff
147148
exit 1
148149
fi
150+
151+
- name: Lint pixi_docs
152+
run: |
153+
pixi run lint-pixi_docs
149154
#
150155
# Run tests on important platforms.
151156
#

0 commit comments

Comments
 (0)