File: codeql.yml

package info (click to toggle)
python-s3transfer 0.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,464 kB
  • sloc: python: 15,756; makefile: 9
file content (35 lines) | stat: -rw-r--r-- 864 bytes parent folder | download
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
name: "CodeQL"

on:
  push:
    branches: ["develop"]
  pull_request:
    branches: ["develop"]
  schedule:
    - cron: "0 0 * * 5"

permissions: "read-all"

jobs:
  analyze:
    name: "Analyze"
    runs-on: "ubuntu-latest"
    permissions:
      actions: read
      contents: read
      security-events: write
    steps:
    - name: "Checkout repository"
      uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"

    - name: "Run CodeQL init"
      uses: "github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a"
      with:
        config-file: "./.github/codeql.yml"
        languages: "python"

    - name: "Run CodeQL autobuild"
      uses: "github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a"

    - name: "Run CodeQL analyze"
      uses: "github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a"