Skip to content

Commit

Permalink
code_layout.yml: add a cppcheck job
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jun 2, 2020
1 parent a54ad88 commit 41120d7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/code_layout.yml
Expand Up @@ -158,3 +158,29 @@ jobs:
run: ./tests/code_layout/test_sip_include.sh
- name: Sip Files Up To Date
run: ./tests/code_layout/test_sipfiles_uptodate.sh

cppcheck_16_04:
runs-on: ubuntu-16.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Requirements
run: |
sudo apt install -y cppcheck
- name: Run cppcheck test
run: ./scripts/cppcheck.sh

cppcheck_18_04:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Requirements
run: |
sudo apt install -y cppcheck
- name: Run cppcheck test
run: ./scripts/cppcheck.sh

0 comments on commit 41120d7

Please sign in to comment.