Skip to content

BSPIMX8M-3562 bsp: Add a known issue and workaround for SDK use #720

BSPIMX8M-3562 bsp: Add a known issue and workaround for SDK use

BSPIMX8M-3562 bsp: Add a known issue and workaround for SDK use #720

Workflow file for this run

# This workflow will check for various agreements such as filesize, filenames.
name: Compliance
on: pull_request
jobs:
compliance:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout the code
uses: actions/checkout@v4
- name: Install ripgrep
run: |
sudo apt update
sudo apt install ripgrep -y
- name: Check file sizes
run: scripts/check_filesize.sh
- name: Check file names
# Run all checks so that the user can address errors after one run.
if: always()
run: scripts/check_filenames.sh
- name: Check for trailing whitespaces and undesired characters (e.g. nbst).
# Run all checks so that the user can address errors after one run.
if: always()
run: scripts/check_whitespaces_chars.sh