This repository has been archived by the owner on Sep 13, 2023. It is now read-only.
[pre-commit.ci] pre-commit autoupdate #744
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: | |
# - "**" | |
- "blah" | |
tags-ignore: | |
- "*.*.*" | |
pull_request: | |
schedule: | |
- cron: '16 7 * * 4' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['javascript', 'python'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v1 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yml | |
setup-python-dependencies: false | |
# don't need to install and check all python | |
# dependencies... | |
#- name: Autobuild | |
# uses: github/codeql-action/autobuild@v1 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v1 |