Make reset filter button in banner delete filters for just that layer #8717
Workflow file for this run
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: Code Layout | |
| on: | |
| push: | |
| paths: | |
| - 'app/**' | |
| - 'core/**' | |
| - 'gallery/**' | |
| - 'scripts/**' | |
| - 'test/**' | |
| - 'cmake/**' | |
| - 'cmake_templates/**' | |
| - 'CMakeLists.txt' | |
| - '.github/workflows/code_style.yml' | |
| release: | |
| types: | |
| - published | |
| env: | |
| QT_VERSION: '6.8.3' # use scripts/update_qt_version.bash to change | |
| CACHE_VERSION: 0 | |
| jobs: | |
| code_style_cpp: | |
| name: C++ code convention check | |
| if: ( github.repository == 'MerginMaps/mobile' ) && (!contains(github.event.head_commit.message, 'Translate ')) | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout input | |
| uses: actions/checkout@v6 | |
| with: | |
| path: input | |
| - name: Install astyle and run the check | |
| run: | | |
| python3 -m venv ./venv | |
| source ./venv/bin/activate | |
| sudo pip3 install astyle===3.4.13 | |
| ./input/scripts/format_cpp.bash | |
| code_style_cmake: | |
| name: CMake code convention check | |
| if: ( github.repository == 'MerginMaps/mobile' ) && (!contains(github.event.head_commit.message, 'Translate ')) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install cmake-format | |
| run: | | |
| sudo pip3 install cmakelang | |
| - name: Checkout input | |
| uses: actions/checkout@v6 | |
| with: | |
| path: input | |
| - name: Run cmake-format check | |
| run: | | |
| ./input/scripts/format_cmake.bash | |
| cppcheck: | |
| name: Cppcheck | |
| if: ( github.repository == 'MerginMaps/mobile' ) && (!contains(github.event.head_commit.message, 'Translate ')) | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install Requirements | |
| #workaround for the current false positive bug in cppcheck 2.20 (latest version) | |
| run: | | |
| curl -L https://github.com/danmar/cppcheck/archive/refs/tags/2.19.1.tar.gz | tar xz | |
| cmake -S cppcheck-2.19.1 -B cppcheck-build -DCMAKE_BUILD_TYPE=Release | |
| cmake --build cppcheck-build -j$(sysctl -n hw.logicalcpu) | |
| cmake --install cppcheck-build | |
| - name: Run cppcheck test | |
| run: ./scripts/cppcheck.bash |