From 0365fed452b3b51d9a72a84073f6bffbe0c0fcd8 Mon Sep 17 00:00:00 2001 From: DanPeled <98838880+DanPeled@users.noreply.github.com> Date: Fri, 22 Nov 2024 10:19:22 +0200 Subject: [PATCH] Removed CI --- .github/workflows/elasticlib-ci.yml | 34 ----------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/elasticlib-ci.yml diff --git a/.github/workflows/elasticlib-ci.yml b/.github/workflows/elasticlib-ci.yml deleted file mode 100644 index 898295b2..00000000 --- a/.github/workflows/elasticlib-ci.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: ElasticLib - CI - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - wpiformat-check: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.x' - - - name: Install wpiformat - run: | - pip install wpiformat - - - name: Run wpiformat - run: | - wpiformat - - - name: Check for uncommitted changes - run: | - git diff --exit-code