mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
This commit adds the original Chocolate DOOM source which forms a basis for the NuttX port of DOOM. Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
23 lines
416 B
YAML
23 lines
416 B
YAML
name: cppcheck
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
cppcheck:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Install dependencies
|
|
run: sudo apt-get update && sudo apt-get install cppcheck
|
|
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Run cppcheck
|
|
env:
|
|
ANALYZE: true
|
|
run: $GITHUB_WORKSPACE/.travis.sh
|