Skip to content

MacOS X has no endian.h so fake it up using libkern/OSByteOrder.h #100

MacOS X has no endian.h so fake it up using libkern/OSByteOrder.h

MacOS X has no endian.h so fake it up using libkern/OSByteOrder.h #100

name: CodeQL analysis
on:
push:
pull_request:
schedule:
# build the main branch every Monday morning
- cron: '22 5 * * 1'
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
- name: install missing deps
run: sudo apt-get install libtls-dev
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Build Application using script
run: |
./autogen.sh
./configure
make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"