Files
bacnet_stack/.github/workflows/codeql-analysis.yml
T
Steve Karg eff691aedd Bugfix/codeql initial fixes (#195)
* Fix to BVLC6 bounds checking

* Convert MSTP capture to use datetime library

* Convert timesync app to use datetime and mstimer library

* fix workflow per warning

* fix BSD mstimer init function name

Co-authored-by: Steve Karg <skarg@users.sourceforge.net>
2021-09-17 09:21:26 -05:00

43 lines
805 B
YAML

name: CodeQL
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
schedule:
- cron: '36 11 * * 6'
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@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# Attempt to build any compiled languages (C/C++, C#, or Java).
- run: make clean all
# Analysis
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1