Bump mypy-dev from 1.16.0a2 to 1.16.0a3 (#1282) #483
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: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
timeout-minutes: 360 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: | |
- javascript-typescript | |
- python | |
- actions | |
steps: | |
- name: Check out code from GitHub | |
uses: actions/[email protected] | |
- name: Initialize CodeQL | |
uses: github/codeql-action/[email protected] | |
with: | |
languages: "${{ matrix.language }}" | |
- name: Perform Python CodeQL Analysis | |
uses: github/codeql-action/[email protected] | |
id: code-analysis | |
with: | |
category: "/language:${{ matrix.language }}" |