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:
7474 run : cd extractor && cargo fmt --all -- --check
7575 - name : Build
7676 if : steps.cache-extractor.outputs.cache-hit != 'true'
77- run : cargo build --verbose
77+ run : cd extractor && cargo build --verbose
7878 - name : Run tests
7979 if : steps.cache-extractor.outputs.cache-hit != 'true'
80- run : cargo test --verbose
80+ run : cd extractor && cargo test --verbose
8181 - name : Release build
8282 if : steps.cache-extractor.outputs.cache-hit != 'true'
83- run : cargo build --release
83+ run : cd extractor && cargo build --release
8484 - name : Generate dbscheme
8585 if : ${{ matrix.os == 'ubuntu-latest' && steps.cache-extractor.outputs.cache-hit != 'true'}}
8686 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