Skip to content

Commit

Permalink
just always
Browse files Browse the repository at this point in the history
  • Loading branch information
ryannikolaidis committed Oct 9, 2023
1 parent 815d48a commit 24bd601
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
make check-deps
check_deps_result: # report the final result of the check_deps job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
make check-tests
lint_result: # report the final result of the lint job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down Expand Up @@ -214,14 +214,14 @@ jobs:
make check-coverage
test_unit_result: # report the final result of the test_unit job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
- test_unit
steps:
- name: Mark result as failed
if: needs.test_unit.result != 'success'
if: needs.skip_conditions.outputs.no_code_changes == 'false' && needs.test_unit.result != 'success'
run: exit 1

test_unit_no_extras:
Expand Down Expand Up @@ -261,7 +261,7 @@ jobs:
make test-no-extras CI=true
test_unit_no_extras_result: # report the final result of the test_unit_no_extras job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
make test-extra-${{ matrix.extra }} CI=true
test_unit_dependency_extras_result: # report the final result of the test_unit_dependency_extras job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down Expand Up @@ -429,7 +429,7 @@ jobs:
./test_unstructured_ingest/test-ingest.sh
test_ingest_result: # report the final result of the test_ingest job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
make test-unstructured-api-unit
test_unstructured_api_unit_result: # report the final result of the test_unstructured_api_unit job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down Expand Up @@ -531,7 +531,7 @@ jobs:
make docker-test CI=true UNSTRUCTURED_INCLUDE_DEBUG_METADATA=true
test_dockerfile_result: # report the final result of the test_dockerfile job, so that it can be properly skipped as needed
if: needs.skip_conditions.outputs.no_code_changes == 'false' && always()
if: always()
runs-on: ubuntu-latest
needs:
- skip_conditions
Expand Down

0 comments on commit 24bd601

Please sign in to comment.