Bump xunit from 2.9.0 to 2.9.2 in the xunit group (#292) #274
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: SlnUp-CI | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.config/**' | |
- '.github/dependabot.yml' | |
- '.vscode/**' | |
- 'docs/**' | |
- 'README.md' | |
jobs: | |
build_ci: | |
name: Build SlnUp | |
if: "!contains(github.event.head_commit.message, 'ci skip')" | |
uses: ./.github/workflows/workflow_build.yml | |
secrets: inherit | |
with: | |
# don't check format on CI builds due to common breaking changes in the .NET SDK | |
checkFormat: false | |
release_ci: | |
name: Release SlnUp to NuGet.org | |
needs: build_ci | |
if: ${{ !contains(needs.build_ci.outputs.package_version, '-') }} | |
uses: ./.github/workflows/workflow_release.yml | |
secrets: inherit | |
with: | |
package-version: ${{ needs.build_ci.outputs.package_version }} |