DOC: document conda-forge support #6
Workflow file for this run
This file contains 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: Docs Build | |
on: [push, pull_request] | |
jobs: | |
docs-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.30.0 | |
cache: true | |
- name: Build Docs | |
run: pixi run -e docs docs | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs-build | |
path: docs/build/ |