Skip to content
Merged
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ jobs:
cargo update -p [email protected] --precise 0.3.20
- name: test payjoin lib
run: cargo test --package payjoin --verbose --all-features --lib
- name: test payjoin v1_to_v1 integration
run: cargo test --package payjoin --verbose --features=send,receive --test integration v1_to_v1
- name: test payjoin vx_to_v2 integration
if: matrix.rust != '1.63.0'
run: |
cargo test --package payjoin --verbose --features=send,receive,v2 --test integration v2_to_v2
cargo test --package payjoin --verbose --features=send,receive,v2 --test integration v1_to_v2
- name: test payjoin-cli bin
run: cargo test --package payjoin-cli --verbose --features=danger-local-https

Expand Down