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 2c00190 commit 97bd716Copy full SHA for 97bd716
.github/workflows/run-dev-tests.yml
@@ -44,13 +44,14 @@ jobs:
44
# if: runner.os == 'Windows'
45
# run: vcpkg install openssl
46
47
- - name: Install third-party binaries
48
- uses: taiki-e/install-action@v2
49
- with:
50
- tool: cargo-nextest,cargo-llvm-cov,cargo-binstall
51
-
52
- - name: Install llvm-cov-pretty (HTML report generator)
53
- run: cargo binstall -y llvm-cov-pretty
+ - uses: cargo-bins/cargo-binstall@main
+
+ - name: Install third-party binaries (HTML report generator)
+ run: >-
+ cargo binstall -y
+ cargo-nextest
+ cargo-llvm-cov
54
+ llvm-cov-pretty
55
56
- uses: actions/setup-python@v5
57
with:
0 commit comments