test 1 #14
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
############################################################### | ||
# Copyright (c) 2025 Contributors to the Eclipse Foundation | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
############################################################### | ||
name: "CodeQL" | ||
on: | ||
push: | ||
branches: ["main"] | ||
paths: | ||
- "ichub-backend/**/*.py" | ||
- "ichub-frontend/**/*.py" | ||
paths-ignore: | ||
- "**/*.yml" | ||
- "**/*.yaml" | ||
- "**/*.md" | ||
- "**/*.txt" | ||
pull_request: | ||
paths: | ||
- "ichub-backend/**/*.py" | ||
- "ichub-frontend/**/*.py" | ||
paths-ignore: | ||
- "**/*.yml" | ||
- "**/*.yaml" | ||
- "**/*.md" | ||
- "**/*.txt" | ||
schedule: | ||
- cron: "0 0 * * 0" | ||
workflow_dispatch: | ||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 360 | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | ||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9 | ||
with: | ||
languages: python | ||
# If you wish to specify custom queries, you can do so here or in a config file | ||
# By default, queries listed here will override any specified in a config file | ||
# Prefix the list here with "+" to use these queries and those in the config file | ||
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# Use +security-extended,security-and-quality for wider security and better code quality | ||
queries: +security-extended,security-and-quality | ||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | ||
# If the Autobuild fails above, remove it and uncomment the following three lines modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance | ||
# - run: | | ||
# echo "Run, Build Application using script" | ||
# ./location_of_script_within_repo/buildscript.sh | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.28.9 | ||
with: | ||
category: "/language:python" | ||
fail-on: error |