Skip to content

Commit

Permalink
Merge pull request #59 from entelecheia/main
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Feb 25, 2024
2 parents 1e5b614 + 1b513b8 commit edac7a7
Show file tree
Hide file tree
Showing 12 changed files with 155 additions and 138 deletions.
2 changes: 1 addition & 1 deletion .copier-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; do NOT edit manually
_commit: v0.11.12-8-g26f3aa4
_commit: v0.11.13-13-gfdcc056
_src_path: .
author: Young Joon Lee
build_and_release: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
echo '\n\n\n'

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)
9 changes: 9 additions & 0 deletions .copier-template/.tasks.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,15 @@ help = "build the book with all outputs"
[tool.poe.tasks.book-publish]
cmd = "ghp-import -n -p -f book/_build/html"
help = "publish the book"
{%- elif documentaion_tool == 'mkdocs' %}

[tool.poe.tasks.build-docs]
cmd = "mkdocs build -f mkdocs.yaml"
help = "build documentation"

[tool.poe.tasks.install-mkdocs]
cmd = "pip install -r docs/requirements.txt"
help = "install mkdocs"
{%- endif %}

[tool.poe.tasks.install]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{!README.md!}

{% if build_and_release %}
Check out the [usage](usage) section for further information.
{% endif %}

{% if project_name != 'hyperfast-python-template' %}
!!! note
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
mkdocs
mkdocstrings[python]
markdown-include
mkdocs-material
mkdocs-material-extensions>=1.1
pymdown-extensions>=9.9.1
{%- if build_and_release %}
mkdocstrings[python]
mkdocs-click
{%- endif %}
3 changes: 2 additions & 1 deletion .github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
echo '\n\n\n'
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)
265 changes: 133 additions & 132 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tmp/.copier-config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; do NOT edit manually
_commit: v0.11.12-7-g7c17e28
_commit: v0.11.13-13-gd85056b
_src_path: .
author: Young Joon Lee
build_and_release: true
Expand Down
3 changes: 2 additions & 1 deletion tmp/.github/workflows/lint_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
echo '\n\n\n'
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # required
fail_ci_if_error: false # optional (default = false)
verbose: true # optional (default = false)

0 comments on commit edac7a7

Please sign in to comment.