File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 13
13
- uses : dtolnay/rust-toolchain@stable
14
14
with :
15
15
components : clippy, rustfmt
16
+ - name : Enable simulators caching
17
+ uses : actions/cache@v4
18
+ with :
19
+ key : ${{runner.os}}-simulators-cache-${{hashFiles('./tests/simulators.json')}}
20
+ path : |
21
+ ./tests/simulators
16
22
- run : |
17
23
sudo apt-get update
18
24
sudo apt-get install -y libudev-dev
28
34
- uses : dtolnay/rust-toolchain@beta
29
35
with :
30
36
components : clippy, rustfmt
37
+ - name : Enable simulators caching
38
+ uses : actions/cache@v4
39
+ with :
40
+ key : ${{runner.os}}-simulators-cache-${{hashFiles('./tests/simulators.json')}}
41
+ path : |
42
+ ./tests/simulators
31
43
- run : |
32
44
sudo apt-get update
33
45
sudo apt-get install -y libudev-dev
44
56
- uses : dtolnay/rust-toolchain@nightly
45
57
with :
46
58
components : clippy, rustfmt
59
+ - name : Enable simulators caching
60
+ uses : actions/cache@v4
61
+ with :
62
+ key : ${{runner.os}}-simulators-cache-${{hashFiles('./tests/simulators.json')}}
63
+ path : |
64
+ ./tests/simulators
47
65
- run : |
48
66
sudo apt-get update
49
67
sudo apt-get install -y libudev-dev
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ mod subtests;
10
10
use subtests:: PairedBitBox ;
11
11
12
12
use bitcoin:: hashes:: Hash ;
13
- use hex;
14
13
use reqwest:: Client ;
15
14
use serde:: { Deserialize , Serialize } ;
16
15
use std:: os:: unix:: fs:: PermissionsExt ;
You can’t perform that action at this time.
0 commit comments