Skip to content

CI: Checks job aborted if a step fails GH30298 #30303

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,53 +23,53 @@ jobs:

- name: Looking for unwanted patterns
run: ci/code_checks.sh patterns
if: true
if: always()

- name: Setup environment and build pandas
run: ci/setup_env.sh
if: true
if: always()

- name: Linting
run: |
source activate pandas-dev
ci/code_checks.sh lint
if: true
if: always()

- name: Dependencies consistency
run: |
source activate pandas-dev
ci/code_checks.sh dependencies
if: true
if: always()

- name: Checks on imported code
run: |
source activate pandas-dev
ci/code_checks.sh code
if: true
if: always()

- name: Running doctests
run: |
source activate pandas-dev
ci/code_checks.sh doctests
if: true
if: always()

- name: Docstring validation
run: |
source activate pandas-dev
ci/code_checks.sh docstrings
if: true
if: always()

- name: Typing validation
run: |
source activate pandas-dev
ci/code_checks.sh typing
if: true
if: always()

- name: Testing docstring validation script
run: |
source activate pandas-dev
pytest --capture=no --strict scripts
if: true
if: always()

- name: Running benchmarks
run: |
Expand All @@ -87,7 +87,7 @@ jobs:
else
echo "Benchmarks did not run, no changes detected"
fi
if: true
if: always()

- name: Publish benchmarks artifact
uses: actions/upload-artifact@master
Expand Down