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 9b1b920 commit a1c09feCopy full SHA for a1c09fe
.github/workflows/run-dev-tests.yml
@@ -31,6 +31,7 @@ jobs:
31
steps:
32
- uses: actions/checkout@v4
33
34
+ - run: rustup update --no-self-update
35
- run: rustup component add llvm-tools-preview
36
37
# https://docs.rs/openssl/latest/openssl/#automatic
@@ -46,12 +47,11 @@ jobs:
46
47
48
- uses: cargo-bins/cargo-binstall@main
49
- - name: Install third-party binaries (HTML report generator)
50
- run: >-
51
- cargo binstall -y
52
- cargo-nextest
53
- cargo-llvm-cov
54
- llvm-cov-pretty
+ - name: Install third-party binaries
+ run: |-
+ cargo binstall -y cargo-nextest
+ cargo binstall -y cargo-llvm-cov
+ cargo binstall -y llvm-cov-pretty
55
56
- uses: actions/setup-python@v5
57
with:
0 commit comments