Skip to content

Fix installation of Python packages in generate docs CI job again #259

Fix installation of Python packages in generate docs CI job again

Fix installation of Python packages in generate docs CI job again #259

Workflow file for this run

name: Generate Documentation
on:
pull_request
jobs:
generate:
if: github.repository == 'zeek/zeek-docs'
strategy:
fail-fast: false
matrix:
os:
- 'ubuntu-22.04'
- 'macos-latest'
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Fetch Dependencies
run: pip3 install -r requirements.txt
- name: Generate Docs
run: make SPHINXOPTS="-W --keep-going"