Skip to content

Commit

Permalink
Test payjoin-cli 1.63.0 msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGould committed Nov 28, 2023
1 parent d439d9e commit 8e9c801
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
cargo update -p tempfile --precise 3.6.0
cargo update -p flate2 --precise 1.0.26
cargo update -p minreq --precise 2.8.0
cargo update -p rustls --precise 0.20.8
cargo update -p webpki --precise 0.22.2
cargo update -p byteorder --precise 1.4.3
cargo update -p regex --precise 1.9.6
cargo update -p time --precise 0.3.20
- name: test
run: cargo test --verbose --all-features --lib

Expand All @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [stable, nightly]
rust: [1.63.0, stable, nightly]

steps:
- uses: actions/checkout@v2
Expand All @@ -56,9 +56,21 @@ jobs:
with:
toolchain: ${{ matrix.rust }}
override: true
- name: Fixes for MSRV
if: matrix.rust == '1.63.0'
run: |
cargo update
cargo update -p log --precise 0.4.18
cargo update -p tempfile --precise 3.6.0
cargo update -p flate2 --precise 1.0.26
cargo update -p minreq --precise 2.8.0
cargo update -p webpki --precise 0.22.2
cargo update -p byteorder --precise 1.4.3
cargo update -p regex --precise 1.9.6
cargo update -p time --precise 0.3.20
- name: build payjoin cli example
run: |
cargo test --verbose --features=local-https
cargo test --verbose --features=danger-local-https
fmt:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ cargo update -p log --precise 0.4.18
cargo update -p tempfile --precise 3.6.0
cargo update -p flate2 --precise 1.0.26
cargo update -p minreq --precise 2.8.0
cargo update -p rustls --precise 0.20.8
cargo update -p webpki --precise 0.22.2
cargo update -p byteorder --precise 1.4.3
cargo update -p regex --precise 1.9.6
cargo update -p time --precise 0.3.20
```

The `payjoin-cli` should compile with Rust **stable** MSRV
Expand Down

0 comments on commit 8e9c801

Please sign in to comment.