Skip to content

Commit

Permalink
Run samples test in github CI only if the test exists
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 547037557
  • Loading branch information
gkdn authored and copybara-github committed Jul 11, 2023
1 parent 2726f14 commit 875137a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,7 @@ jobs:
run: ./build_test.sh CI
- name: Run samples tests
if: matrix.test-target == 'samples'
run: ./build_test_samples.sh CI
run: |
if [[ -f "./build_test_samples.sh" ]]; then
./build_test_samples.sh CI
fi

0 comments on commit 875137a

Please sign in to comment.