Run code analysis #47
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
# Copyright (c) 2023 Ferrous Systems | |
# SPDX-License-Identifier: MIT OR Apache-2.0 | |
name: workflow-code-analysis | |
run-name: Run code analysis | |
on: [push] | |
jobs: | |
job-clippy-nrf52-app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Install tools | |
run: | | |
sudo apt-get update -y && sudo apt-get -y install gcc-arm-none-eabi | |
- name: Add rustup target | |
run: | | |
rustup target add thumbv7em-none-eabi | |
- name: Check Clippy on nRF52 App | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
run: | | |
cd nrf52-app | |
cargo clippy --all-features | |
job-clippy-qemu-cortex-r5-app: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Install tools | |
run: | | |
sudo apt-get update -y && sudo apt-get -y install gcc-arm-none-eabi | |
- name: Add rustup target | |
run: | | |
rustup target add armv7r-none-eabihf | |
- name: Check Clippy on QEMU Cortex-R5 App | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
run: | | |
cd qemu-cortex-r5-app | |
cargo clippy --all-features | |
job-clippy-threadx-sys: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Check Clippy on threadx-sys | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
run: | | |
cd threadx-sys | |
cargo clippy --all-features |