Skip to content

Add BulkResponse wrapper for improved decoding of HTTP bulk responses #624

Add BulkResponse wrapper for improved decoding of HTTP bulk responses

Add BulkResponse wrapper for improved decoding of HTTP bulk responses #624

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "46 2 * * 5"
# Allow job to be triggered manually.
workflow_dispatch:
# Cancel in-progress jobs when pushing to the same branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: "Analyze Python code"
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
language: [ python ]

Check failure on line 31 in .github/workflows/codeql.yml

View workflow run for this annotation

GitHub Actions / CodeQL

Invalid workflow file

The workflow is not valid. .github/workflows/codeql.yml (Line: 31, Col: 7): Unexpected value 'language'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
cache: 'pip'
cache-dependency-path: |
setup.py
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql.yml
queries: +security-and-quality
#- name: Autobuild
# uses: github/codeql-action/autobuild@v2
- name: Install project
run: |
pip install --editable=.[test]
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3