Skip to content

Update in documentation - in INSTALL file #64

Update in documentation - in INSTALL file

Update in documentation - in INSTALL file #64

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
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
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
# uses: github/codeql-action/init@v2
uses: github/codeql-action/init@c3b6fce4ee2ca25bc1066aa3bf73962fda0e8898
with:
languages: ${{ matrix.language }}
# Install dependencies and build
- name: Install dependencies
run: sudo apt install -y automake libtool pkg-config libssl-dev libz-dev nasm
- name: autogen
run: ACLOCAL_PATH=/usr/share/aclocal ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make -j
- name: Perform CodeQL Analysis
# uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@c3b6fce4ee2ca25bc1066aa3bf73962fda0e8898
with:
category: "/language:${{matrix.language}}"