mirror of
https://github.com/apache/olingo-odata4.git
synced 2025-02-11 04:26:16 +00:00
49 lines
941 B
YAML
49 lines
941 B
YAML
|
name: "CodeQL"
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '00 20 * * 3'
|
||
|
push:
|
||
|
branches: [master]
|
||
|
paths-ignore:
|
||
|
- 'LICENSE'
|
||
|
- 'NOTICE'
|
||
|
- 'README'
|
||
|
- SECURITY.md'
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
paths-ignore:
|
||
|
- 'LICENSE'
|
||
|
- 'NOTICE'
|
||
|
- 'README'
|
||
|
- SECURITY.md'
|
||
|
|
||
|
jobs:
|
||
|
analyze:
|
||
|
name: Analyze
|
||
|
runs-on: ubuntu-latest
|
||
|
permissions:
|
||
|
actions: read
|
||
|
contents: read
|
||
|
security-events: write
|
||
|
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
language: [ 'java' ]
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
# Initializes the CodeQL tools for scanning.
|
||
|
- name: Initialize CodeQL
|
||
|
uses: github/codeql-action/init@v1
|
||
|
with:
|
||
|
languages: ${{ matrix.language }}
|
||
|
|
||
|
- name: Autobuild
|
||
|
uses: github/codeql-action/autobuild@v1
|
||
|
|
||
|
- name: Perform CodeQL Analysis
|
||
|
uses: github/codeql-action/analyze@v1
|