Skip to content

Security fixes

Security fixes #618

Workflow file for this run

name: Documentation Coverage
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- 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
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
- name: Run documentation coverage
run: docstr-coverage ptmd/ --fail-under=100 --badge="./docs_badge.svg"
- name: Commit changes
uses: elstudio/actions-js-build/commit@v2
with:
commitMessage: 'Autogenerated documentation files'
wdPath: '.'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}