Improve API for checking algorithm characteristics around symmetry #268
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-Doc | |
on: | |
pull_request: | |
branches: | |
- develop/v2 | |
types: | |
- closed | |
jobs: | |
autodoc: | |
runs-on: ubuntu-latest | |
name: "Run commands to generate documentation" | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Process markdown files | |
run: | | |
find . -name '*.md' | xargs perl tools/autodoc.pl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |