Using push and workflow_dispatch as CI trigger #633
Workflow file for this run
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
name: "Test cppcheck" | |
on: [push, workflow_dispatch] | |
jobs: | |
cppcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Update package list | |
run: sudo apt update | |
- name: Install cppcheck | |
run: sudo apt install cppcheck | |
- name: "[Release g++] Build" | |
env: | |
CPR_ENABLE_CPPCHECK: ON | |
uses: ashutoshvarma/action-cmake-build@master | |
with: | |
build-dir: ${{github.workspace}}/build | |
source-dir: ${{github.workspace}} | |
cc: gcc | |
cxx: g++ | |
build-type: Release | |
run-test: false |