From fa51241bf1ccf14ce69e95e15c1943ae42fbaa53 Mon Sep 17 00:00:00 2001 From: Fanis Tharropoulos Date: Fri, 28 Feb 2025 09:33:50 +0200 Subject: [PATCH 1/2] ci: remove tests from release workflow --- .github/workflows/release.yml | 24 +----------------------- 1 file changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce1f9bc..266d4b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,29 +4,7 @@ on: tags: - 'v*' jobs: - tests: - name: Run Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: "3.8" - cache: 'pip' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements/dev.txt - - - name: Run tests (excluding OpenAI) - run: coverage run -m pytest -m "not open_ai" - - - name: Show coverage report - run: coverage report - build-n-publish: + build-n-publish: name: Build and Publish needs: tests runs-on: ubuntu-latest From 2c192afd56e80389121a84100fb92dccdcfb1340 Mon Sep 17 00:00:00 2001 From: Fanis Tharropoulos Date: Fri, 28 Feb 2025 09:35:03 +0200 Subject: [PATCH 2/2] ci: fix whitespace --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 266d4b2..d2bc5a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: tags: - 'v*' jobs: - build-n-publish: + build-n-publish: name: Build and Publish needs: tests runs-on: ubuntu-latest