Run all tests even if some fail
This commit is contained in:
parent
8714f8e6bc
commit
9887d0ca26
1 changed files with 6 additions and 6 deletions
12
.github/workflows/ci-main.yml
vendored
12
.github/workflows/ci-main.yml
vendored
|
@ -100,7 +100,7 @@ jobs:
|
|||
;;
|
||||
esac
|
||||
- name: Check path options
|
||||
if: steps.build.outcome == 'success'
|
||||
if: success() || steps.build.outcome == 'success'
|
||||
run: |
|
||||
./wesnoth --version
|
||||
for opt in config data userconfig userdata
|
||||
|
@ -110,19 +110,19 @@ jobs:
|
|||
printf '%s-path: %s\n' "$opt" "$output"
|
||||
done
|
||||
- name: WML validation
|
||||
if: steps.build.outcome == 'success'
|
||||
if: success() || steps.build.outcome == 'success'
|
||||
run: ./utils/CI/schema_validation.sh
|
||||
- name: Run WML tests
|
||||
if: steps.build.outcome == 'success'
|
||||
if: success() || steps.build.outcome == 'success'
|
||||
run: ./run_wml_tests -g -c -t 20
|
||||
- name: Run play tests
|
||||
if: steps.build.outcome == 'success'
|
||||
if: success() || steps.build.outcome == 'success'
|
||||
run: ./utils/CI/play_test_executor.sh
|
||||
- name: Run MP tests
|
||||
if: steps.build.outcome == 'success'
|
||||
if: success() || steps.build.outcome == 'success'
|
||||
run: ./utils/CI/mp_test_executor.sh
|
||||
- name: Run unit tests
|
||||
if: steps.build.outcome == 'success'
|
||||
if: success() || steps.build.outcome == 'success'
|
||||
run: ./run_boost_tests
|
||||
|
||||
steam-runtime:
|
||||
|
|
Loading…
Add table
Reference in a new issue