Files
IRremoteESP8266/.github/workflows/Documentation.yml
David Conran c71a150143 Migrate from Travis to GitHub Actions (#1526)
* Move any remaining Travis processes to GitHub Actions
* Remove Travis files and references. (Excluding `ReleaseNotes.md`)
* Change badges as well.
  - Remove two defunct badges.
  - Add a badge per GitHub Actions workflow.

Fixes #1522
2021-07-10 11:49:43 +10:00

22 lines
561 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:
branches: [ master ]
pull_request:
branches: [ master ]
# 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: SteffenSeckler/doxygen-action@v2.2.0beta4
with:
fail-on-warnings: true