Skip to content

v0.0.31 #320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 21 commits into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
d3b5b3a
v0.0.31
sebastienrousseau Nov 24, 2024
abc04ac
refactor(ssg): :art: refactor code and various optimisations features
sebastienrousseau Dec 26, 2024
e8e98ed
refactor(ssg): :art: new multilingual example
sebastienrousseau Dec 26, 2024
f1c29ea
fix(ssg): :bug: fix formatting
sebastienrousseau Dec 26, 2024
da3a6f7
Merge branch 'main' into feat/ssg
sebastienrousseau Dec 26, 2024
a0a8204
fix(ssg): :bug: fix linitng issues and lib.rs example
sebastienrousseau Dec 26, 2024
dd6768e
fix(ssg): :bug: implementing the FromStr trait for ShokuninConfig ins…
sebastienrousseau Dec 26, 2024
7c428f7
fix(ssg): :bug: fix lint issues
sebastienrousseau Dec 26, 2024
91cdb4c
fix(ssg): :bug: fixed error: unused import
sebastienrousseau Dec 26, 2024
547c62e
fix(ssg): :bug: fix benches
sebastienrousseau Dec 26, 2024
324ff21
test(ssg): :white_check_mark: add unit tests
sebastienrousseau Dec 26, 2024
a25a499
test(ssg): :white_check_mark: add missing unit tests
sebastienrousseau Dec 26, 2024
0b81833
fix(ssg): :white_check_mark: fix broken tests
sebastienrousseau Dec 26, 2024
24a5184
test(ssg): :white_check_mark: fix unit tests
sebastienrousseau Dec 26, 2024
bf1bdb8
fix(ssg): :white_check_mark: fix unit tests
sebastienrousseau Dec 26, 2024
a4b93bc
test(ssg): :white_check_mark: add new unit tests
sebastienrousseau Dec 26, 2024
ad36a2e
fix(ssg): :white_check_mark: add new unit tests and bench tests
sebastienrousseau Dec 27, 2024
42fa604
test(ssg): :white_check_mark: add tests to cover edge cases and the f…
sebastienrousseau Dec 27, 2024
2ce9234
ci(ssg): :bug: fix coverage.yml workflow
sebastienrousseau Dec 27, 2024
8e4070b
ci(ssg): :bug: fix document workflow
sebastienrousseau Dec 27, 2024
200062d
test(ssg): :white_check_mark: add new unit tests for main.rs
sebastienrousseau Dec 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info
files: lcov.info
16 changes: 8 additions & 8 deletions .github/workflows/document.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: 🧪 Document
on:
push:
branches:
- main
- feat/ssg
pull_request:
branches:
Expand All @@ -18,11 +19,11 @@ jobs:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: hecrj/setup-rust-action@v2
- uses: hecrj/setup-rust-action@v2.0.1
with:
rust-version: nightly

- uses: actions/checkout@v4
- uses: actions/checkout@v4.2.2

- name: Update libssl
run: |
Expand All @@ -37,24 +38,23 @@ jobs:
echo '<html><head><meta http-equiv="refresh" content="0; url=/ssg/"></head><body></body></html>' > ./target/doc/index.html

- name: Deploy
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.5.0
with:
name: documentation
path: target/doc
if-no-files-found: error
retention-days: 1

- name: Write CNAME file
run: echo 'docs.shokunin.one' > ./target/doc/CNAME
run: echo 'doc.shokunin.one' > ./target/doc/CNAME

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
uses: peaceiris/actions-gh-pages@v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
publish_branch: gh-pages
cname: true
clean: true
commit_message: Deploy documentation at ${{ github.sha }}
commit_user_name: github-actions
commit_user_email: actions@users.noreply.github.com
user_name: github-actions
user_email: actions@users.noreply.github.com
Loading
Loading