Files
IRremoteESP8266/.github/workflows/Documentation.yml
David Conran f026c5c290 Fix broken doxygen action. (#1577)
* Fix doxygen action.
* Make the action run on every push.
* Tested that it detects a doxygen warning/error correctly.
2021-08-27 21:19:21 +10:00

16 lines
433 B
YAML

# This is a basic workflow that is triggered on push/PRs to the master branch.
name: Documentation
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on: [push]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
Doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: mattnotmitt/doxygen-action@v1