Welcome to mirror list, hosted at ThFree Co, Russian Federation.

codeql-analysis.yml « workflows « .github - github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0ebb90e3d204cca6dd584dcc61e62aeddf52588 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: "CodeQL"

on:
  push:
    branches:
      - master
      - development
  pull_request:
    branches:
      - master
      - development
  schedule:
    - cron: '32 11 * * 6'

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest

    permissions:
      actions: read
      contents: read
      security-events: write

    steps:
    -
      name: Checkout repository
      uses: actions/checkout@v3.1.0
    # Initializes the CodeQL tools for scanning.
    -
      name: Initialize CodeQL
      uses: github/codeql-action/init@v2
      with:
        languages: 'python'
    -
      name: Autobuild
      uses: github/codeql-action/autobuild@v2
    -
      name: Perform CodeQL Analysis
      uses: github/codeql-action/analyze@v2