ftests/030: teach parsing of cgroup v1/v2 code isolation #392
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-License-Identifier: LGPL-2.1-only | |
# | |
# Continuous Integration Workflow for libcgroup | |
# | |
# Copyright (c) 2020-2023 Oracle and/or its affiliates. | |
# Author: Tom Hromatka <[email protected]> | |
# Author: Kamalesh Babulal <[email protected]> | |
# | |
name: "CodeQL" | |
on: ["push", "pull_request"] | |
jobs: | |
codeql: | |
name: CodeQL | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: cpp, python | |
- name: Initialize the directory | |
uses: ./.github/actions/setup-libcgroup | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |