Skip to content

Fixed bug #79, added L1 attack in PGDNative (which was implemented bu… #113

Fixed bug #79, added L1 attack in PGDNative (which was implemented bu…

Fixed bug #79, added L1 attack in PGDNative (which was implemented bu… #113

Workflow file for this run

name: Render documentation
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: "1"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
- name: Render the documentation
run: >
sphinx-build
-M html ./docs/source ./docs/build
-vv
--jobs=auto
--keep-going