-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68e2f01
commit a440159
Showing
38 changed files
with
135 additions
and
182 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
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
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
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 |
---|---|---|
|
@@ -11,16 +11,23 @@ env: | |
|
||
jobs: | ||
testing: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest, macos-13, macos-latest, windows-latest ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: Test ${{matrix.os}} | ||
run: cargo test --workspace --all-features --no-fail-fast | ||
wasm-testing: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install latest stable | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- name: Build & test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --workspace --all-features --no-fail-fast | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- uses: jetli/[email protected] | ||
- name: Add wasm32 target | ||
run: rustup target add wasm32-unknown-unknown | ||
- name: Test in headless Chrome | ||
run: wasm-pack test --headless --chrome |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Maxim Orlovsky | ||
--------------- | ||
|
||
- GitHub: [@dr-orlovsky](https://github.com/dr-orlovsky) | ||
- GPG: `EAE730CEC0C663763F028A5860094BAF18A26EC9` | ||
- SSH: `BoSGFzbyOKC7Jm28MJElFboGepihCpHop60nS8OoG/A` | ||
- EMail: [[email protected]](mailto:[email protected]) | ||
- EMail: [[email protected]](mailto:[email protected]) |
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 |
---|---|---|
|
@@ -3,12 +3,11 @@ Type: Library | |
Kind: Free software | ||
License: Apache-2.0 | ||
Language: Rust | ||
Compiler: 1.70 | ||
Compiler: 1.75 | ||
Author: Maxim Orlovsky | ||
Maintained: UBIDECO Institute, Switzerland | ||
Maintained: UBIDECO Labs, Institute for Distributed and Cognitive Computing, Switzerland | ||
Maintainers: | ||
Maxim Orlovsky: | ||
GitHub: @dr-orlovsky | ||
GPG: EAE730CEC0C663763F028A5860094BAF18A26EC9 | ||
SSH: BoSGFzbyOKC7Jm28MJElFboGepihCpHop60nS8OoG/A | ||
EMail: [email protected] | ||
EMail: [email protected] |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
codecov: | ||
require_ci_to_pass: no | ||
require_ci_to_pass: false | ||
|
||
coverage: | ||
precision: 1 | ||
|
Oops, something went wrong.