Skip to content

[Internal] Update workflows to run on the dev/sdk-mod branch (#1118) #22

[Internal] Update workflows to run on the dev/sdk-mod branch (#1118)

[Internal] Update workflows to run on the dev/sdk-mod branch (#1118) #22

Workflow file for this run

name: "CodeQL Advanced"
on:
push:
branches: [ "dev/sdk-mod" ]
pull_request:
branches: [ "dev/sdk-mod" ]
schedule:
- cron: '41 1 * * 0'
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on:
group: databricks-deco-testing-runner-group
labels: ubuntu-latest-deco
permissions:
# required for all workflows
security-events: write
strategy:
fail-fast: false
matrix:
include:
- language: go
build-mode: autobuild
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"