Skip to content

Commit

Permalink
run separate tests for latest
Browse files Browse the repository at this point in the history
  • Loading branch information
KalanaDananjaya authored May 6, 2024
1 parent 317d482 commit 09ad9c9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/verify-containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,13 @@ jobs:
export TESTSCRIPT_PATH=$(pwd)/test-suite/files/testscript_test.sh
" >> ${{ github.workspace }}/../test-suite/.env
- name: Run test-suite for container specific tests
if: ${{ github.event.inputs.image_tag }} == 'test'
run: |
cd ${{ github.workspace }}/../test-suite
./index.sh --container-only --${{ github.event.inputs.image_tag }}
./index.sh --container-only --test
- name: Run test-suite for all tests
if: ${{ github.event.inputs.image_tag }} == 'latest'
run: |
cd ${{ github.workspace }}/../test-suite
./index.sh --latest

0 comments on commit 09ad9c9

Please sign in to comment.