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.
1 parent bc8cdca commit f35517dCopy full SHA for f35517d
.github/workflows/rust.yml
@@ -23,6 +23,7 @@ jobs:
23
run: sudo apt-get install libwayland-dev
24
# Pull in Binary Ninja
25
- name: Setup Binary Ninja
26
+ id: setup-binja
27
uses: Vector35/setup-binary-ninja@v1-beta
28
with:
29
license: '${{ secrets.BN_SERIAL }}'
@@ -31,6 +32,8 @@ jobs:
31
32
- name: Test
33
# For now, we run the tests single threaded, there are some data races in core around platform types
34
run: cargo test --all-features -- --test-threads=1
35
+ env:
36
+ BINARYNINJADIR: ${{ steps.setup-binja.outputs.install-path }}
37
38
# Check lints with clippy
39
clippy:
0 commit comments