Skip to content

Update cibuildwheel #112

Update cibuildwheel

Update cibuildwheel #112

Workflow file for this run

name: Docs
on:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
sudo apt update
sudo apt install -y libpcap-dev
- name: Install
run: |
pip install -e .[dev]
- name: Build documentation
run: |
make html
working-directory: ./docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html