We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c137e commit ef0ed8aCopy full SHA for ef0ed8a
1 file changed
.github/workflows/run_tests.yml
@@ -45,9 +45,11 @@ jobs:
45
- name: Install ibm_db from source
46
shell: powershell
47
run: |
48
+ $ErrorActionPreference = "Continue"
49
python -m ensurepip --upgrade
50
python -m pip install --upgrade pip
- python -m pip install . --verbose 2>&1 | Tee-Object -FilePath install_log.txt
51
+ python -m pip install . --verbose
52
+ if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
53
54
- name: Generate config files from secrets
55
0 commit comments