Skip to content

Commit 20371bb

Browse files
author
Francesco Timperi Tiberi
committed
test: only unit and integration tests are executed. full test covered by specific testing project
1 parent 540d356 commit 20371bb

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/check.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ jobs:
8282
- name: Wait
8383
if: ${{ env.NGROK == 'on' }}
8484
run: bash .github/wait.sh
85-
- name: Test
86-
run: task test
87-
continue-on-error: true
85+
- name: Unit Test
86+
run: task utest
87+
continue-on-error: false
88+
- name: Integration Test
89+
run: task itest
90+
continue-on-error: false

.github/workflows/image.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,12 @@ jobs:
8787
run: bash .github/wait.sh
8888
- name: AddIngress
8989
run: task kind:ingress
90-
- name: Test
91-
run: task test
90+
- name: Unit Test
91+
run: task utest
92+
continue-on-error: false
93+
- name: Integration Test
94+
run: task itest
95+
continue-on-error: false
9296
- name: Registry login
9397
uses: docker/login-action@v3
9498
with:

0 commit comments

Comments
 (0)