mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
31 lines
567 B
YAML
31 lines
567 B
YAML
name: "CodeQL CI"
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
analyze:
|
|
name: Analyze
|
|
runs-on: windows-latest
|
|
permissions:
|
|
actions: read
|
|
contents: read
|
|
security-events: write
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
language: [ 'go', 'cpp', 'csharp' ]
|
|
|
|
steps:
|
|
- name: Code QL
|
|
uses: github/codeql-action/init@v1
|
|
with:
|
|
languages: ${{ matrix.language }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Analyze
|
|
uses: github/codeql-action/analyze@v1
|