Update library.properties #16
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
#################################################################################################### | |
## YAML file for github Actions that will perform project checking for adhering to doxygen ## | |
## documentation standards and to also deploy the generated HTML documentation to gh-pages ## | |
## ## | |
## ## | |
## Version Date Developer Comments ## | |
## ======= ========== ============== ============================================================ ## | |
## 1.0.0 2020-12-04 SV-Zanshin Initial coding ## | |
## ## | |
#################################################################################################### | |
name: 'Doxygen' | |
#################################################################################################### | |
## Action runs when committing (push), doing a pull request, or a workflow_dispatch ## | |
#################################################################################################### | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
doxygen: | |
name: 'Generate doxygen' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout the repository from github' | |
uses: actions/checkout@v2 | |
- name: 'Checkout the "Zanduino/Common" repository from github' | |
uses: actions/checkout@v2 | |
with: | |
repository: Zanduino/Common | |
path: Common | |
- name: 'Create doxygen html documentation' | |
env: | |
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }} | |
########################################################################################## | |
## The following 5 lines need to be set here each project ## | |
########################################################################################## | |
PRETTYNAME: "MAX31855 Arduino Library" | |
PROJECT_NAME: "MAX31855" | |
PROJECT_NUMBER: "v1.0.6" | |
PROJECT_BRIEF: "Arduino Library to read temperatures from a thermocouple using the MAX31855 chip" | |
PROJECT_LOGO: "" | |
run: bash ${GITHUB_WORKSPACE}/Common/Scripts/doxy_gen_and_deploy.sh |