Fix getPlayerTilePosition() and add corresponding test case #6
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: cpp-linter | |
on: | |
pull_request: | |
branches: main | |
paths: ['**.cpp', '**.h', '**CMakeLists.txt'] | |
push: | |
branches: main | |
paths: ['**.cpp', '**.h', '**CMakeLists.txt'] | |
jobs: | |
cpp-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cpp-linter/cpp-linter-action@v2 | |
id: linter | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
style: 'file' # Use .clang-format config file. | |
tidy-checks: '-*' # disable clang-tidy checks. | |
- name: Fast fail | |
if: steps.linter.outputs.clang-format-checks-failed > 0 | |
run: exit 1 |