Skip to content

BSPIMX8M-3533 Wip/bhahn/add imx8mp libra #709

BSPIMX8M-3533 Wip/bhahn/add imx8mp libra

BSPIMX8M-3533 Wip/bhahn/add imx8mp libra #709

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