From f81f66bf9b715e6adc1940ff77ca96ba1302939d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Schmitz?= <152157960+bahkauv70@users.noreply.github.com> Date: Fri, 6 Dec 2024 12:00:01 +0100 Subject: [PATCH] chore: remove linter and test calls from pipeline The sdk generator will do linter and tests individually without breaking the pipeline on the first issue --- .github/workflows/sdk-pr.yaml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/sdk-pr.yaml b/.github/workflows/sdk-pr.yaml index 5d17e6e..1fba597 100644 --- a/.github/workflows/sdk-pr.yaml +++ b/.github/workflows/sdk-pr.yaml @@ -38,12 +38,6 @@ jobs: run: make download-oas - name: Generate SDK run: make generate-sdk - - name: Lint - working-directory: ./sdk-repo-updated - run: make lint skip-non-generated-files=true - - name: Test - working-directory: ./sdk-repo-updated - run: make test skip-non-generated-files=true - name: Push SDK env: GH_REPO: "stackitcloud/stackit-sdk-go" @@ -86,16 +80,6 @@ jobs: python -m venv ${{ runner.temp }}/.venv source ${{ runner.temp }}/.venv/bin/activate make install-dev - - name: Lint Python - working-directory: ./sdk-repo-updated - run: | - source ${{ runner.temp }}/.venv/bin/activate - make lint - - name: Test Python - working-directory: ./sdk-repo-updated - run: | - source ${{ runner.temp }}/.venv/bin/activate - make test - name: Push Python SDK env: GH_REPO: "stackitcloud/stackit-sdk-python"