phoenix/.github/workflows/codeql.yml

38 lines
877 B
YAML
Raw Permalink Normal View History

2023-09-03 19:35:01 +05:00
name: "CodeQL"
on:
push:
branches: [ "production" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "production" ]
jobs:
codeql-analyze:
name: CodeQL Analyze
runs-on: 'ubuntu-latest'
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
2023-09-03 19:35:01 +05:00
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
2023-09-03 19:35:01 +05:00
with:
languages: go
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
- name: Autobuild
uses: github/codeql-action/autobuild@v3
2023-09-03 19:35:01 +05:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
2023-09-03 19:35:01 +05:00
with:
category: "/language:go"