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 3516868
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@ jobs:
- name: Build go code
run: go build

- name: Setup environment
run: bash -x .github/integration/setup/setup.sh
#- name: Setup environment
# 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 3516868

Please sign in to comment.