mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2026-09-03 05:10:26 +03:00
35 lines
715 B
YAML
35 lines
715 B
YAML
name: GitHub CodeQL 🔬
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
workflow_call:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze 🔬
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository ⬇️
|
|
uses: actions/checkout@v3.2.0
|
|
|
|
- name: Initialize CodeQL 🛠️
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
queries: +security-and-quality
|
|
|
|
- name: Autobuild 📦
|
|
uses: github/codeql-action/autobuild@v2
|
|
|
|
- name: Perform CodeQL Analysis 🧪
|
|
uses: github/codeql-action/analyze@v2
|