Skip to content

Commit

Permalink
- Use default value.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed Jul 31, 2024
1 parent e08b48e commit 9f7b70c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0

- name: Test 1 - default
id: test_1
uses: ./action.yml
uses: ./
with:
name-patterns: '*UnitTest.*,*IntegrationTest.*'
paths: '**/src/test/java/**,**/src/test/scala/**'

- name: Test 2 - custom with multiple line inputs
id: test_2
uses: ./action.yml
uses: ./
with:
name-patterns: |
*UnitTest.*,
Expand Down Expand Up @@ -75,7 +77,7 @@ jobs:
- name: Test 3 - csv report
id: test_3
uses: ./action.yml
uses: ./
with:
name-patterns: '*UnitTest.*,*IntegrationTest.*'
paths: '**/src/test/java/**,**/src/test/scala/**'
Expand All @@ -93,7 +95,7 @@ jobs:
- name: Test 4 - json report
id: test_4
uses: ./action.yml
uses: ./
with:
name-patterns: '*UnitTest.*,*IntegrationTest.*'
paths: '**/src/test/java/**,**/src/test/scala/**'
Expand All @@ -111,7 +113,7 @@ jobs:
- name: Test 5 - custom with multiple line inputs
id: test_5
uses: ./action.yml
uses: ./
with:
name-patterns: |
*UnitTest.*,
Expand Down

0 comments on commit 9f7b70c

Please sign in to comment.