Fix incorrect fallback for the "include not found tests" option #260
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: main | |
on: | |
workflow_dispatch: | |
inputs: | |
package-version: | |
type: string | |
description: Package version | |
required: false | |
deploy: | |
type: boolean | |
description: Deploy package | |
required: false | |
default: false | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- master | |
jobs: | |
main: | |
uses: Tyrrrz/.github/.github/workflows/nuget.yml@master | |
with: | |
deploy: ${{ inputs.deploy || github.ref_type == 'tag' }} | |
package-version: ${{ inputs.package-version || (github.ref_type == 'tag' && github.ref_name) || format('0.0.0-ci-{0}', github.sha) }} | |
dotnet-version: 8.0.x | |
# Don't use the default logger (which is GitHubActionsTestLogger) because that | |
# causes contention issues since we're literally building and testing that logger. | |
dotnet-test-logger: console | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }} | |
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} |