mirror of
https://github.com/docker/awesome-compose.git
synced 2026-06-30 18:40:32 +02:00
31 lines
743 B
YAML
31 lines
743 B
YAML
name: "CodeQL"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [ 'go', 'typescript', 'python' ]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@231aa2c8a89117b126725a0e11897209b7118144 # v1
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@231aa2c8a89117b126725a0e11897209b7118144 # v1
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@231aa2c8a89117b126725a0e11897209b7118144 # v1
|