Skip to content

Commit

Permalink
Merge pull request #37 from sebastienrousseau/feat/hsh
Browse files Browse the repository at this point in the history
feat(hsh): v0.0.5
  • Loading branch information
sebastienrousseau authored Sep 10, 2023
2 parents b427a1d + 8a446d1 commit 891ecf6
Show file tree
Hide file tree
Showing 32 changed files with 1,804 additions and 724 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
name: 🧪 Audit
on: [push, pull_request]

on:
push:
branches:
- feat/hsh
pull_request:
branches:
- feat/hsh
release:
types: [created]

jobs:
dependencies:
name: Audit dependencies
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
- name: Install cargo-audit
run: cargo install cargo-audit
- uses: actions/checkout@master
- name: Audit dependencies
run: cargo audit
- uses: hecrj/setup-rust-action@v2
- name: Install cargo-audit
run: cargo install cargo-audit
- uses: actions/checkout@master
- name: Audit dependencies
run: cargo audit
24 changes: 17 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
name: 🧪 Check
on: [push, pull_request]

on:
push:
branches:
- feat/hsh
pull_request:
branches:
- feat/hsh
release:
types: [created]

jobs:
all:
name: Check
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
components: clippy
- uses: actions/checkout@master
- name: Check lints
run: cargo check --all-targets --workspace --all-features
- uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@master
- name: Check lints
run: cargo check --all-targets --workspace --all-features
93 changes: 51 additions & 42 deletions .github/workflows/document.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,60 @@
name: 🧪 Document
on: [push, pull_request]

on:
push:
branches:
- feat/hsh
pull_request:
branches:
- feat/hsh
release:
types: [created]

jobs:
all:
name: Document
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: hecrj/setup-rust-action@v2
with:
rust-version: nightly

- uses: actions/checkout@v4

- name: Update libssl
run: |
sudo apt-get update
sudo apt-get install -y libssl1.1
- name: Generate documentation for all features and publish it
run: |
RUSTDOCFLAGS="--cfg docsrs" \
cargo doc --no-deps --all-features --workspace
# Write index.html with redirect
echo '<html><head><meta http-equiv="refresh" content="0; url=/hsh/"></head><body></body></html>' > ./target/doc/index.html
- name: Deploy
uses: actions/upload-artifact@v3
with:
name: documentation
path: target/doc
if-no-files-found: error
retention-days: 1

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

- uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly

- uses: actions/checkout@v3

- name: Update libssl
run: |
sudo apt-get update
sudo apt-get install -y libssl1.1
- name: Generate documentation for all features and publish it
run: |
RUSTDOCFLAGS="--cfg docsrs" \
cargo doc --no-deps --all-features --workspace
# Write index.html with redirect
echo '<html><head><meta http-equiv="refresh" content="0; url=/hsh/"></head><body></body></html>' > ./target/doc/index.html
- name: Deploy
uses: actions/upload-artifact@v3
with:
name: documentation
path: target/doc
if-no-files-found: error
retention-days: 1

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

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
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: [email protected]
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
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: [email protected]
24 changes: 17 additions & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
name: 🧪 Lint
on: [push, pull_request]

on:
push:
branches:
- feat/hsh
pull_request:
branches:
- feat/hsh
release:
types: [created]

jobs:
all:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
components: clippy
- uses: actions/checkout@master
- name: Check lints
run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings
- uses: hecrj/setup-rust-action@v2
with:
components: clippy
- uses: actions/checkout@master
- name: Check lints
run: cargo clippy --workspace --all-features --all-targets --no-deps -- -D warnings
Loading

0 comments on commit 891ecf6

Please sign in to comment.