Reverse the order and abort on error so I don't have to wait for a long run if the latest solution has an error.
All checks were successful
Solve / example-action (push) Successful in 16s
All checks were successful
Solve / example-action (push) Successful in 16s
This commit is contained in:
parent
632fdd4ecb
commit
9668926992
3
.github/workflows/solve.yaml
vendored
3
.github/workflows/solve.yaml
vendored
@ -17,7 +17,8 @@ jobs:
|
|||||||
- uses: https://github.com/fwilhe2/setup-kotlin@main
|
- uses: https://github.com/fwilhe2/setup-kotlin@main
|
||||||
- name: Solutions
|
- name: Solutions
|
||||||
run: |
|
run: |
|
||||||
for script in $(ls *.kts | sort); do
|
set -e
|
||||||
|
for script in $(ls *.kts | sort -r); do
|
||||||
echo "Running $script"
|
echo "Running $script"
|
||||||
kotlin $script
|
kotlin $script
|
||||||
done
|
done
|
Loading…
Reference in New Issue
Block a user