-
Notifications
You must be signed in to change notification settings - Fork 1.5k
45 lines (41 loc) · 1.38 KB
/
check_for_guideline_rules.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
##############################################################################
## Copyright (C) 2022-2023 Analog Devices, Inc. All rights reserved.
#
## GitHub action script for the check_guideline.py script located in .github/scripts
##############################################################################
name: Guideline checker
on:
pull_request:
branches:
- main
paths:
- 'library/**'
- 'projects/**'
jobs:
guideline_check:
runs-on: ubuntu-latest
steps:
- name: Setup python
uses: actions/setup-python@v5
with:
# version range
python-version: '3.10'
- name: Checkout repository code
uses: actions/checkout@v4
# repository that retrieves all the changed files
- name: Load get-changed-files repo
uses: Ana06/[email protected]
id: changed_files
with:
format: space-delimited
- name: Print changed files
run: |
echo "::group::Click here to see the Changed files"
echo "${{ steps.changed_files.outputs.all }}"
echo "::endgroup::"
- name: Executing Py script for guideline check
id: execution
# -p flag means that files will be specified with their relative path
run: |
python ./.github/scripts/check_guideline.py -p ${{ steps.changed_files.outputs.all }}
shell: sh