Skip to content

Add Look Command

Add Look Command #1

Workflow file for this run

name: "CodeQL Analysis"
on:
pull_request:
jobs:
codeql:
name: "CodeQL Scan"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'javascript', 'python', 'go' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
if: matrix.language == 'python'
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Autobuild (for compiled languages like Go)
if: matrix.language == 'go'
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1