From 900ff12e414140b95bdef12ef1f14b734ef0a206 Mon Sep 17 00:00:00 2001 From: Dramelac Date: Thu, 21 Dec 2023 00:38:24 +0100 Subject: [PATCH] Change pre-release checks order --- .github/workflows/entrypoint_prerelease.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/entrypoint_prerelease.yml b/.github/workflows/entrypoint_prerelease.yml index f8c21041..1e201c0d 100644 --- a/.github/workflows/entrypoint_prerelease.yml +++ b/.github/workflows/entrypoint_prerelease.yml @@ -9,14 +9,9 @@ on: - "**.md" jobs: - code_test: - name: Python tests and checks - uses: ./.github/workflows/sub_testing.yml - preprod_test: name: Pre-prod code testing runs-on: ubuntu-latest - needs: code_test steps: - uses: actions/checkout@master with: @@ -32,10 +27,15 @@ jobs: - name: Check package version (alpha and beta version cannot be released) run: python3 -c 'from exegol.config.ConstantConfig import ConstantConfig; print(ConstantConfig.version); exit(any(c in ConstantConfig.version for c in ["a", "b"]))' + code_test: + name: Python tests and checks + needs: preprod_test + uses: ./.github/workflows/sub_testing.yml + build: name: Build Python 🐍 distributions runs-on: ubuntu-latest - needs: preprod_test + needs: code_test steps: - uses: actions/checkout@master with: