File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -32,12 +32,12 @@ jobs:
32
32
run : cargo clippy -- -W clippy::all
33
33
if : matrix.rust == 'stable'
34
34
env :
35
- RUST_BACKTRACE : 1
36
- CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG : true
35
+ RUST_BACKTRACE : full
37
36
- name : Build and test
38
37
run : cargo test
39
38
env :
40
39
RUST_MIN_STACK : 8388608
40
+ RUST_BACKTRACE : full
41
41
42
42
minimal-versions :
43
43
name : minimal versions check
54
54
run : rm Cargo.lock
55
55
- run : cargo build -Z minimal-versions
56
56
env :
57
- RUST_BACKTRACE : 1
58
- CARGO_PROFILE_DEV_BUILD_OVERRIDE_DEBUG : true
57
+ RUST_BACKTRACE : full
59
58
60
59
web :
61
60
name : web build
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ struct Ast {
253
253
254
254
fn make_peg ( ) -> Result < ( ) , Error > {
255
255
if !Path :: new ( "node_modules/.bin/peggy" ) . exists ( ) {
256
- Command :: new ( "pnpm" )
256
+ Command :: new ( "./ pnpm" )
257
257
. args ( [ "install" ] )
258
258
. output ( )
259
259
. context ( "pnpm install" ) ?;
You can’t perform that action at this time.
0 commit comments