-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
9009cb4
commit 9f6cdc2
Showing
8 changed files
with
108 additions
and
232 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 |
---|---|---|
|
@@ -2,19 +2,38 @@ name: Tests | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: | ||
- master | ||
tags: | ||
- 'v[0-9]+\.*' | ||
pull_request: | ||
branches: [ master ] | ||
branches: | ||
- master | ||
- develop | ||
- 'v[0-9]+.[0-9]+' | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
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@v4 | ||
- name: Install Nix | ||
uses: cachix/install-nix-action@v26 | ||
- name: Build & test | ||
run: nix develop .#stable -c cargo test --workspace --all-features --no-fail-fast --lib | ||
- 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 |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ categories = ["cryptography::cryptocurrencies"] | |
authors = ["Dr Maxim Orlovsky <[email protected]>"] | ||
homepage = "https://lnp-bp.org" | ||
repository = "https://github.com/BP-WG/bp-wallet" | ||
rust-version = "1.75.0" # Due to descriptors | ||
rust-version = "1.75.0" # Due to amplify | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
||
|
@@ -58,7 +58,7 @@ serde_crate = { workspace = true, optional = true } | |
|
||
[features] | ||
default = [] | ||
all = ["signers", "client-side-validation", "strict_encoding", "serde"] | ||
all = ["signers", "client-side-validation", "strict_encoding", "serde", "psbt/all"] | ||
signers = ["secp256k1/global-context", "secp256k1/rand-std"] | ||
strict_encoding = ["psbt/strict_encoding"] | ||
client-side-validation = ["bp-core", "psbt/client-side-validation"] | ||
|
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.