feat(langserver): support for new VAR statement in RF7 #841
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: "CodeQL" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [main] | |
schedule: | |
- cron: "29 0 * * 6" | |
env: | |
PYTHONUNBUFFERED: "1" | |
FORCE_COLOR: "1" | |
jobs: | |
analyze: | |
name: analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ["javascript", "python"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: setup python environment | |
id: setup-python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.8" | |
- name: Ensure latest pip is installed | |
run: python -m pip install --upgrade pip | |
- name: Ensure latest hatch is installed | |
run: python -m pip install --upgrade hatch | |
- name: Create dev environment | |
run: | | |
hatch env create | |
echo "CODEQL_PYTHON=$(hatch -q run which python)" >> $GITHUB_ENV | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
setup-python-dependencies: false | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |