Skip to content

Commit d724385

Browse files
authored
Merge pull request #1 from alexanderlaw/main
Add GitHub actions to check python code, shell scripts, and config
2 parents 925bfc2 + 742df78 commit d724385

File tree

5 files changed

+121
-5
lines changed

5 files changed

+121
-5
lines changed

.github/workflows/codeql.yml

+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
name: "CodeQL"
13+
14+
on:
15+
push:
16+
branches: [ "main" ]
17+
pull_request:
18+
# The branches below must be a subset of the branches above
19+
branches: [ "main" ]
20+
schedule:
21+
- cron: '38 21 * * 0'
22+
23+
jobs:
24+
analyze:
25+
name: Analyze
26+
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
27+
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
28+
permissions:
29+
actions: read
30+
contents: read
31+
security-events: write
32+
33+
strategy:
34+
fail-fast: false
35+
matrix:
36+
language: [ 'python' ]
37+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
38+
# Use only 'java' to analyze code written in Java, Kotlin or both
39+
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
40+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
41+
42+
steps:
43+
- name: Checkout repository
44+
uses: actions/checkout@v3
45+
46+
# Initializes the CodeQL tools for scanning.
47+
- name: Initialize CodeQL
48+
uses: github/codeql-action/init@v2
49+
with:
50+
languages: ${{ matrix.language }}
51+
# If you wish to specify custom queries, you can do so here or in a config file.
52+
# By default, queries listed here will override any specified in a config file.
53+
# Prefix the list here with "+" to use these queries and those in the config file.
54+
55+
# 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
56+
# queries: security-extended,security-and-quality
57+
58+
59+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
60+
# If this step fails, then you should remove it and run the build manually (see below)
61+
- name: Autobuild
62+
uses: github/codeql-action/autobuild@v2
63+
64+
# ℹ️ Command-line programs to run using the OS shell.
65+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
66+
67+
# If the Autobuild fails above, remove it and uncomment the following three lines.
68+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
69+
70+
# - run: |
71+
# echo "Run, Build Application using script"
72+
# ./location_of_script_within_repo/buildscript.sh
73+
74+
- name: Perform CodeQL Analysis
75+
uses: github/codeql-action/analyze@v2
76+
with:
77+
category: "/language:${{matrix.language}}"

.github/workflows/extrachecks.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Extra checks
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v3
10+
- name: Installing requirements
11+
run: sudo apt install shellcheck libxml2-utils
12+
- name: Analyzing scripts with ShellCheck
13+
run: |
14+
shellcheck scripts/*/*
15+
- name: Analyzing config.xml with xmllint
16+
run: |
17+
xmllint --noout config.xml

.github/workflows/pylint.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Pylint
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.10", "3.11"]
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Set up Python ${{ matrix.python-version }}
14+
uses: actions/setup-python@v3
15+
with:
16+
python-version: ${{ matrix.python-version }}
17+
- name: Install dependencies
18+
run: |
19+
python -m pip install --upgrade pip
20+
pip install pylint
21+
- name: Analysing the code with pylint
22+
run: |
23+
pylint $(git ls-files '*.py')

prepare-instances.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ def get_repo_url(instance):
7979
# Prepare source directory
8080
git_dir = config.find('./settings/default/git').get('path')
8181
if not os.path.exists(git_dir):
82+
# pylint: disable=broad-exception-raised
8283
raise Exception(f'Git directory ({git_dir}) not found'
8384
' (check settings/default/git in config.xml)!')
8485
git_branch = instance.get('git_branch')
@@ -193,12 +194,10 @@ def get_repo_url(instance):
193194
if __name__ == "__main__":
194195
arg_parser = argparse.ArgumentParser()
195196
arg_parser.add_argument('-c', '--config', action='store',
196-
default='config.xml',
197-
help='configuration file')
197+
default='config.xml', help='configuration file')
198198
arg_parser.add_argument('-i', '--instance', nargs='+',
199199
dest='instances', metavar='INSTANCE-ID',
200-
default=[],
201-
help='instance(s) to create')
200+
default=[], help='instance(s) to create')
202201

203202
args = arg_parser.parse_args(sys.argv[1:])
204203
sys.exit(main(args.config, args.instances))

run-benchmarks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
as specified in a configuration file.
77
"""
88

9-
# pylint: disable=invalid-name
9+
# pylint: disable=invalid-name,broad-exception-raised
1010

1111
# Requirements: docker, bash, wget, git, tar, 7z
1212

0 commit comments

Comments
 (0)