DEHACKED: warn if thing has MF_MISSILE without MF_NOBLOCKMAP #352
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: 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 |