From 55233109147d9ad60860b96215afc9b576124578 Mon Sep 17 00:00:00 2001 From: ruinivist Date: Tue, 24 Feb 2026 19:00:16 +0000 Subject: [PATCH] chore: delete workflows ( don't have much use ) --- .github/workflows/lint.yml | 68 -------------------------------------- 1 file changed, 68 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index b6013a3..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,68 +0,0 @@ -name: Lint - -on: - push: - paths: - - "**/*.qml" - - "**/*.c" - - "**/*.cc" - - "**/*.cpp" - - "**/*.h" - - "**/*.hh" - - "**/*.hpp" - - "**/*.json" - - "**/*.yml" - - "**/*.yaml" - - "**/*.md" - - ".prettierrc" - - ".clang-format" - - ".clangd" - - "Makefile" - - "cpp/CMakeLists.txt" - - "cpp/CMakePresets.json" - - ".github/workflows/lint.yml" - pull_request: - paths: - - "**/*.qml" - - "**/*.c" - - "**/*.cc" - - "**/*.cpp" - - "**/*.h" - - "**/*.hh" - - "**/*.hpp" - - "**/*.json" - - "**/*.yml" - - "**/*.yaml" - - "**/*.md" - - ".prettierrc" - - ".clang-format" - - ".clangd" - - "Makefile" - - "cpp/CMakeLists.txt" - - "cpp/CMakePresets.json" - - ".github/workflows/lint.yml" - -jobs: - lint: - runs-on: ubuntu-latest - container: - image: invent-registry.kde.org/neon/docker-images/plasma:developer - options: --user root - - steps: - - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: "20" - - - name: Install prettier - run: npm i -g prettier@3.8.1 - - - name: Install make - run: | - apt-get install -y --no-install-recommends make - - - name: Run lint checks - run: make lint