mirror of
https://github.com/upx/upx.git
synced 2025-08-07 22:46:51 +08:00
39 lines
925 B
YAML
39 lines
925 B
YAML
name: 'Static Analyzer - CodeQL'
|
|
|
|
on:
|
|
# push:
|
|
# branches: [ 'devel', 'devel4', 'devel5', 'master' ]
|
|
# pull_request:
|
|
# # The branches below must be a subset of the branches above
|
|
# branches: [ 'devel', 'devel4', 'devel5' ]
|
|
schedule:
|
|
- cron: '20 1 * * 3'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [ 'cpp' ]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
with: { submodules: true }
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
- name: Autobuild
|
|
uses: github/codeql-action/autobuild@v2
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2
|