File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,13 +74,13 @@ jobs:
74
74
run : cd extractor && cargo fmt --all -- --check
75
75
- name : Build
76
76
if : steps.cache-extractor.outputs.cache-hit != 'true'
77
- run : cargo build --verbose
77
+ run : cd extractor && cargo build --verbose
78
78
- name : Run tests
79
79
if : steps.cache-extractor.outputs.cache-hit != 'true'
80
- run : cargo test --verbose
80
+ run : cd extractor && cargo test --verbose
81
81
- name : Release build
82
82
if : steps.cache-extractor.outputs.cache-hit != 'true'
83
- run : cargo build --release
83
+ run : cd extractor && cargo build --release
84
84
- name : Generate dbscheme
85
85
if : ${{ matrix.os == 'ubuntu-latest' && steps.cache-extractor.outputs.cache-hit != 'true'}}
86
86
run : extractor/target/release/ruby-generator --dbscheme ql/lib/ruby.dbscheme --library ql/lib/codeql/ruby/ast/internal/TreeSitter.qll
You can’t perform that action at this time.
0 commit comments