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 c8e05c1 commit 8b74e95Copy full SHA for 8b74e95
.github/workflows/build.yml
@@ -91,7 +91,8 @@ jobs:
91
submodules: true
92
- run: rustup update
93
- uses: Swatinem/rust-cache@v2
94
- - run: cargo install cargo-codspeed || true
+ - uses: taiki-e/install-action@v2
95
+ with: { tool: cargo-codspeed }
96
- run: cargo codspeed build
97
- uses: CodSpeedHQ/action@v2
98
with:
@@ -106,7 +107,7 @@ jobs:
106
107
108
- run: rustup update && rustup toolchain install nightly
109
- - run: cargo install --force cargo-fuzz
110
+ - run: cargo install cargo-fuzz || true
111
- run: python3 build_corpus.py
112
working-directory: ./fuzz
113
- run: cargo +nightly fuzz run parse -- -max_total_time=300 -max_len=128
0 commit comments