Skip to content

Bump org.codehaus.groovy:groovy-all from 2.5.7 to 2.5.14 #31

Bump org.codehaus.groovy:groovy-all from 2.5.7 to 2.5.14

Bump org.codehaus.groovy:groovy-all from 2.5.7 to 2.5.14 #31

Workflow file for this run

name: Build Documentation
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
name: Check out source-code repository
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Install doc dependencies
run: |
pip install -r docs/requirements.txt
- name: Build docs
run: |
cd docs
make html