Skip to content

Commit ffbad17

Browse files
committed
Fix coverage issue
1 parent 25e0986 commit ffbad17

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/publish.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,14 @@ jobs:
4141
pnpm build
4242
pnpm lint
4343
# rust coverage issue
44-
echo "max_width = 1000\ntab_spaces = 4\nnewline_style = \"Unix\"\nfn_call_width = 1000\nfn_params_layout = \"Compressed\"\nchain_width = 1000\nmerge_derives = true\nuse_small_heuristics = \"Default\"\n" > .rustfmt.toml
44+
echo 'max_width = 1000' > .rustfmt.toml
45+
echo 'tab_spaces = 4' >> .rustfmt.toml
46+
echo 'newline_style = "Unix"' >> .rustfmt.toml
47+
echo 'fn_call_width = 1000' >> .rustfmt.toml
48+
echo 'fn_params_layout = "Compressed"' >> .rustfmt.toml
49+
echo 'chain_width = 1000' >> .rustfmt.toml
50+
echo 'merge_derives = true' >> .rustfmt.toml
51+
echo 'use_small_heuristics = "Default"' >> .rustfmt.toml
4552
cargo fmt
4653
pnpm test
4754
- name: Benchmark

0 commit comments

Comments
 (0)