diff options
| author | Joel Challis | 2025-12-15 01:21:06 +0100 |
|---|---|---|
| committer | GitHub | 2025-12-15 01:21:06 +0100 |
| commit | 2c847b0350cfef92f347f27a0ebe9f0187e95b5e (patch) | |
| tree | 8f3b929a632142a5897f838595b1fa3b3007ebc4 /.github/workflows/docs.yml | |
| parent | e1c869b8dafd9078f71a1a31f5d63c77196142c1 (diff) | |
Consistently install branch specific dependencies in CI (#25874)
Diffstat (limited to '.github/workflows/docs.yml')
| -rw-r--r-- | .github/workflows/docs.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5e5669ee78..8a0229f873 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -35,9 +35,10 @@ jobs: fetch-depth: 1 - name: Install dependencies + run: pip3 install -r requirements-dev.txt + + - name: Install nvm run: | - apt-get update && apt-get install -y rsync doxygen - # install nvm touch $HOME/.bashrc wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash |