Skip to content

Commit fec298b

Browse files
committed
Add GitHub Action for applying Coding Standards configuration
1 parent 4345ca0 commit fec298b

File tree

1 file changed

+15
-0
lines changed
  • .github/actions/apply-coding-standards-configuration

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Applies Coding Standard configuration files in the repository
2+
description: |
3+
Installs Python and indexes the CodeQL Coding Standard configuration files in the repository
4+
5+
runs:
6+
using: composite
7+
steps:
8+
- name: Install Python
9+
uses: actions/setup-python@v5
10+
with:
11+
python-version: 3.9
12+
- name: Install dependencies
13+
run: python -m pip install -r ${{ github.action_path }}/scripts/configuration/requirements.txt
14+
- name: Process files
15+
run: python ${{ github.action_path }}/scripts/configuration/process_coding_standards_config.py

0 commit comments

Comments
 (0)