Use std::floor
instead of casting double -> int -> double
#341
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: Docs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
name: Build and deploy docs | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Build documentation | |
run: | | |
python3 -m pip install mkdocs pymdown-extensions mkdocs-material mike | |
git fetch origin gh-pages --depth=1 | |
git config user.name ci-bot | |
git config user.email [email protected] | |
mike deploy --push v10.0.X latest |