From c1b9153126fe2819a34e56562705f9d3bce408b8 Mon Sep 17 00:00:00 2001 From: Elijas <4084885+Elijas@users.noreply.github.com> Date: Sat, 14 Oct 2023 14:19:10 +0300 Subject: [PATCH] fix: ci-cd --- .github/workflows/ci.yml | 2 +- Taskfile.yml | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acd2e09..a90b9ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ['3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11'] steps: - name: Checkout code diff --git a/Taskfile.yml b/Taskfile.yml index 9247a68..c734ff3 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -49,7 +49,6 @@ tasks: - task: unit - task: lint - task: docs-verify - - task: e2e-verify ###################################################################################### ### Hidden: Too rarely used on their own, meant to be used as part of other tasks. ### @@ -84,11 +83,6 @@ tasks: cmds: - if git diff --exit-code > /dev/null 2>&1 && git diff --cached --exit-code > /dev/null 2>&1; then :; else echo "Changes detected in the working tree or index. Please commit or stash them before proceeding."; exit 1; fi - clone-sec-parser-e2e-data: # Clone the sec-parser-e2e-data repository if it does not exist. - silent: true - cmds: - - if [ -d "{{.ROOT_DIR}}/../sec-parser-e2e-data" ]; then :; else echo "Repository does not exist. Cloning from GitHub..."; git clone https://github.com/alphanome-ai/sec-parser-e2e-data "{{.ROOT_DIR}}/../sec-parser-e2e-data" || { echo "Directory ../sec-parser-e2e-data does not exist and git clone failed. Please use \"git clone\" to download it from https://github.com/alphanome-ai/sec-parser-e2e-data. Aborting."; exit 1; }; fi - version-bump: # Bump the version number. cmds: - poetry run cz bump {{.CLI_ARGS}}