-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from sebastienrousseau/feat/cmn
feat(cmn): v0.0.3
- Loading branch information
Showing
33 changed files
with
3,323 additions
and
906 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[alias] | ||
xtask = "run --package xtask --bin xtask --" |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 🧪 Audit | ||
|
||
on: | ||
push: | ||
branches: | ||
- feat/cmn | ||
pull_request: | ||
branches: | ||
- feat/cmn | ||
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 🧪 Check | ||
|
||
on: | ||
push: | ||
branches: | ||
- feat/cmn | ||
pull_request: | ||
branches: | ||
- feat/cmn | ||
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: 🧪 Document | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
all: | ||
name: Document | ||
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | ||
runs-on: ubuntu-latest | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
steps: | ||
- 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=/cmn/"></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.cmnlib.one' > ./target/doc/CNAME | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3.9.3 | ||
with: | ||
cname: true | ||
commit_message: Deploy documentation at ${{ github.sha }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_branch: gh-pages | ||
publish_dir: ./target/doc | ||
user_email: actions@users.noreply.github.com | ||
user_name: github-actions |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 🧪 Lint | ||
|
||
on: | ||
push: | ||
branches: | ||
- feat/cmn | ||
pull_request: | ||
branches: | ||
- feat/cmn | ||
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 |
Oops, something went wrong.