mirror of
https://github.com/Luzifer/ots.git
synced 2024-10-01 01:06:09 -04:00
48 lines
944 B
YAML
48 lines
944 B
YAML
|
---
|
||
|
|
||
|
name: "CodeQL"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ "master" ]
|
||
|
pull_request:
|
||
|
# The branches below must be a subset of the branches above
|
||
|
branches: [ "master" ]
|
||
|
schedule:
|
||
|
- cron: '38 21 * * 3'
|
||
|
|
||
|
jobs:
|
||
|
analyze:
|
||
|
name: Analyze
|
||
|
runs-on: 'ubuntu-latest'
|
||
|
timeout-minutes: 360
|
||
|
permissions:
|
||
|
actions: read
|
||
|
contents: read
|
||
|
security-events: write
|
||
|
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
language: [ 'go', 'javascript' ]
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
# Initializes the CodeQL tools for scanning.
|
||
|
- 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
|
||
|
with:
|
||
|
category: "/language:${{matrix.language}}"
|
||
|
|
||
|
...
|