Separate extensive and strategic form games into different tables #3093
This file contains hidden or 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: Linters and coding standards checks | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| clang-format: | |
| name: clang-format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Run clang-format style check for C/C++ | |
| uses: jidicula/clang-format-action@v4.16.0 | |
| with: | |
| clang-format-version: '17' | |
| check-path: 'src' | |
| include-regex: '^.*\.((((c|C)(c|pp|xx|\+\+)?$)|((h|H)h?(pp|xx|\+\+)?$))|(imp))$' | |
| clang-tidy: | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc | |
| sudo apt-get update | |
| sudo apt-get install -y automake autoconf libwxgtk3.2-dev clang-tidy | |
| - run: aclocal | |
| - run: automake --add-missing | |
| - run: autoconf | |
| - run: ./configure | |
| - run: make clang-tidy | |
| ruff: | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: chartboost/ruff-action@v1 | |
| flake8: | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - uses: py-actions/flake8@v2 | |
| cython-lint: | |
| runs-on: ubuntu-latest | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install Python packages | |
| run: python -m pip install cython-lint | |
| - name: cython-lint | |
| run: cython-lint . |