File: cppcheck.yml

package info (click to toggle)
crispy-doom 7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,972 kB
  • sloc: ansic: 254,242; makefile: 986; objc: 951; python: 722; sh: 90; xml: 7
file content (23 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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@v4

      - name: Run cppcheck
        env:
          ANALYZE: true
        run: $GITHUB_WORKSPACE/.travis.sh