Update MCP7940.cpp #52
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-10 SV-Zanshin Cloned from COMMON project ## | |
## ## | |
#################################################################################################### | |
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: "MCP7940 Arduino Library" | |
PROJECT_NAME: "MCP7940" | |
PROJECT_NUMBER: "v1.2.0" | |
PROJECT_BRIEF: "Arduino Library for the MCP7940N and MCP7940M Real-time clocks" | |
PROJECT_LOGO: "" | |
run: bash ${GITHUB_WORKSPACE}/Common/Scripts/doxy_gen_and_deploy.sh |