projects: Add missing sysid IP #709
Workflow file for this run
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
name: Guideline checker | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'library/**' | |
- 'projects/**' | |
jobs: | |
guideline_check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
with: | |
# version range | |
python-version: '3.x' | |
- name: Checkout repository code | |
uses: actions/checkout@v3 | |
# 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 |