Skip to content

Commit

Permalink
[tests] run all test files with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MalinAhlberg committed Dec 17, 2024
1 parent 8f71145 commit 436e524
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,8 @@ jobs:
run: bash -x .github/integration/setup/setup.sh

- name: Run tests
run: bash -x .github/integration/tests/tests.sh
run: |
ls -1 .github/integration/tests/*.sh 2>/dev/null | sort -t/ -k5 -n | while read -r runscript; do
echo "Executing setup script $runscript";
bash -x "$runscript";
done

0 comments on commit 436e524

Please sign in to comment.