Skip to content

Commit

Permalink
ci: add condition for e2e CIs (#1491)
Browse files Browse the repository at this point in the history
add condition for e2e CIs
  • Loading branch information
mpoke authored Dec 15, 2023
1 parent 0edbbe5 commit ebf0620
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ jobs:
**/Makefile
Makefile
- name: e2e tests
run: make test-e2e-short
if: env.GIT_DIFF
run: |
make test-e2e-short
test-cometmock:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -209,7 +211,9 @@ jobs:
**/Makefile
Makefile
- name: cometmock tests
run: make test-e2e-short-cometmock
if: env.GIT_DIFF
run: |
make test-e2e-short-cometmock
test-trace:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -237,4 +241,6 @@ jobs:
**/Makefile
Makefile
- name: trace-e2e tests
run: make test-trace
if: env.GIT_DIFF
run: |
run: make test-trace

0 comments on commit ebf0620

Please sign in to comment.