[trivial] Add clang-tidy test that was erroneously commented out and … #207
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: Autodoc | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
autodoc: | |
name: Autodoc | |
if: github.repository == 'aibasel/downward' | |
timeout-minutes: 60 | |
runs-on: ubuntu-22.04 | |
env: | |
DOWNWARD_AUTODOC_PASSWORD: ${{ secrets.DOWNWARD_AUTODOC_PASSWORD }} | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Run autodoc | |
run: | | |
cd misc/autodoc | |
python3 autodoc.py | |
... |