We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vrf
1 parent da634e6 commit 817978eCopy full SHA for 817978e
.github/workflows/ci.yaml
@@ -77,6 +77,29 @@ jobs:
77
cd ledger
78
cargo test --release -- -Z unstable-options --report-time
79
80
+ vrf-tests:
81
+ runs-on: ubuntu-20.04
82
+ steps:
83
+ - name: Git checkout
84
+ uses: actions/checkout@v4
85
+ - name: Setup build dependencies
86
+ run: |
87
+ sudo apt update
88
+ sudo apt install -y protobuf-compiler
89
+ - name: Setup Rust
90
91
+ # Nightly to be able to use `--report-time` below
92
+ rustup install nightly
93
+ rustup override set nightly
94
+ - name: Build vrf tests
95
96
+ cd vrf
97
+ cargo build --release --tests
98
+ - name: Run vrf tests
99
100
101
+ cargo test --release -- -Z unstable-options --report-time
102
+
103
tx-fuzzer-check:
104
runs-on: ubuntu-20.04
105
steps:
0 commit comments