We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4345ca0 commit fec298bCopy full SHA for fec298b
.github/actions/apply-coding-standards-configuration/action.yml
@@ -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