pipelines: default: - parallel: - step: name: pylint runs-on: - 'self.hosted' - 'linux.shell' script: - python --version - pylint scripts/check_license.py - step: name: license headers check runs-on: - 'self.hosted' - 'linux.shell' script: - git submodule update --init - cmake -B build -GNinja - ninja -C build rekonq_check_license custom: FullBuildTest: - step: name: Debug Build runs-on: - 'self.hosted' - 'linux.shell' script: - git submodule update --init - cmake -B build -DCMAKE_BUILD_TYPE=Debug -DTESTING=ON -GNinja - ninja -C build - ninja -C build test