udpate Max Min MinMax function to support float64, deprecated corresp… #27
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: Document | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
document: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Copy README.md | |
run: cp README.md README.md.bak | |
- name: Generate README.md | |
run: make doc | |
- name: Compare README.md | |
run: | | |
diff README.md README.md.bak | |
if [ $? -ne 0 ]; then | |
echo "README.md is not generated from README.tmpl.md" | |
exit 1 | |
else | |
echo "README.md is generated from README.tmpl.md" | |
fi |