|
46 | 46 | required: false |
47 | 47 | type: string |
48 | 48 |
|
| 49 | + dotnet_test_options_output_verbosity_level: |
| 50 | + description: "The argument to be set to the `--output <VERBOSITY_LEVEL>` option of the `dotnet test` command." |
| 51 | + required: false |
| 52 | + type: string |
| 53 | + default: '' |
| 54 | + |
49 | 55 | jobs: |
50 | 56 | await-package-publishing: |
51 | 57 | name: Wait for publishing of released package |
52 | 58 | if: ${{ github.event_name == 'release' }} |
53 | | - uses: smdn/Smdn.Fundamentals/.github/workflows/nuget-await-package-publishing.yml@workflows/nuget/v1.0.0 |
| 59 | + uses: smdn/workflows-dotnet/.github/workflows/nuget-await-package-publishing.yml@nuget/v1.1.1 |
54 | 60 | with: |
55 | 61 | release_tag: ${{ github.event.release.tag_name }} |
56 | 62 |
|
57 | 63 | run-test: |
58 | 64 | name: Run tests with released packages |
59 | | - uses: smdn/Smdn.Fundamentals/.github/workflows/test.yml@workflows/test/v1.6.0 |
| 65 | + uses: smdn/workflows-dotnet/.github/workflows/test.yml@test/v1.8.0 |
60 | 66 | needs: await-package-publishing |
61 | 67 | if: ${{ always() && !failure() && !cancelled() }} # run tests even if await-package-publishing is skipped |
62 | 68 | with: |
|
67 | 73 | dotnet_sdk_version: ${{ inputs.dotnet_sdk_version == '' && '10.0.100' || inputs.dotnet_sdk_version }} |
68 | 74 | timeout_minutes_test_job: 10 |
69 | 75 | timeout_hang: "[ {'OS':'windows','Timeout':'6min'}, {'OS':'macos','Timeout':'3min'}, {'OS':'','Timeout':'1min'} ]" |
70 | | - timeout_vstest_connection: "[ {'OS':'windows','Timeout':360}, {'OS':'macos','Timeout':180}, {'OS':'','Timeout':60} ]" |
71 | 76 | dotnet_test_options_verbosity_level: ${{ inputs.dotnet_test_options_verbosity_level }} |
72 | 77 | dotnet_test_options_framework: ${{ inputs.dotnet_test_options_framework }} |
73 | 78 | dotnet_test_options_filter_expression: ${{ inputs.dotnet_test_options_filter_expression }} |
| 79 | + dotnet_test_options_output_verbosity_level: ${{ inputs.dotnet_test_options_output_verbosity_level }} |
74 | 80 | secrets: |
75 | 81 | token_repo: ${{ secrets.GITHUB_TOKEN }} |
0 commit comments