Skip to content

Merge pull request #9 from armstjc/0.0.8-The-Games-Update #5

Merge pull request #9 from armstjc/0.0.8-The-Games-Update

Merge pull request #9 from armstjc/0.0.8-The-Games-Update #5

Workflow file for this run

name: Generate Docs
on:
schedule:
- cron: "0 0 * * 0"
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pdoc
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: run Python Script
run: |
pdoc cfbd_json_py -o ./docs