Skip to content

Commit

Permalink
fix: ci-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Elijas committed Oct 14, 2023
1 parent a0c0a81 commit c1b9153
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 0 additions & 6 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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. ###
Expand Down Expand Up @@ -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}}
Expand Down

0 comments on commit c1b9153

Please sign in to comment.