Update tree-sitter requirement from 0.20 to 0.23 in /ruby/extractor #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Ruby: Run QL Tests" | |
on: | |
push: | |
paths: | |
- "ruby/**" | |
- .github/workflows/ruby-qltest.yml | |
branches: | |
- main | |
- "rc/*" | |
pull_request: | |
paths: | |
- "ruby/**" | |
- .github/workflows/ruby-qltest.yml | |
branches: | |
- main | |
- "rc/*" | |
env: | |
CARGO_TERM_COLOR: always | |
defaults: | |
run: | |
working-directory: ruby | |
jobs: | |
qltest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/fetch-codeql | |
- uses: ./ruby/actions/create-extractor-pack | |
- name: Run QL tests | |
run: | | |
codeql test run --check-databases --check-unused-labels --check-repeated-labels --check-redefined-labels --check-use-before-definition --search-path "${{ github.workspace }}/ruby" --additional-packs "${{ github.workspace }}" --consistency-queries ql/consistency-queries ql/test | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Check QL formatting | |
run: find ql "(" -name "*.ql" -or -name "*.qll" ")" -print0 | xargs -0 codeql query format --check-only | |
- name: Check QL compilation | |
run: | | |
codeql query compile --check-only --threads=4 --warnings=error --search-path "${{ github.workspace }}/ruby" --additional-packs "${{ github.workspace }}" "ql/src" "ql/examples" | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
- name: Check DB upgrade scripts | |
run: | | |
echo >empty.trap | |
codeql dataset import -S ql/lib/upgrades/initial/ruby.dbscheme testdb empty.trap | |
codeql dataset upgrade testdb --additional-packs ql/lib | |
diff -q testdb/ruby.dbscheme ql/lib/ruby.dbscheme |