Merge branch 'master' into feat/gitpython_multiple_file_and_single_commits

This commit is contained in:
Alexander Sergeev
2023-03-11 22:50:58 +01:00
committed by GitHub

View File

@@ -30,12 +30,25 @@ jobs:
steps: steps:
- name: Checkout 🛎️ - name: Checkout 🛎️
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Setup Python 3.8 🐍
uses: actions/setup-python@v4
with:
python-version: 3.8
cache: 'pip'
- name: Install dependencies 📥
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
- name: Initialize CodeQL 🧑‍💻 - name: Initialize CodeQL 🧑‍💻
uses: github/codeql-action/init@v2 uses: github/codeql-action/init@v2
with: with:
languages: ${{ matrix.language }} languages: ${{ matrix.language }}
queries: security-and-quality queries: security-and-quality
setup-python-dependencies: false
- name: Perform CodeQL Analysis 📈 - name: Perform CodeQL Analysis 📈
uses: github/codeql-action/analyze@v2 uses: github/codeql-action/analyze@v2