chore(deps): Bump NUnit3TestAdapter from 4.4.0 to 4.6.0 in /src #113
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
# Calls a workflow that | |
# + builds and tests the develop branch, | |
# + packs and uploads a beta NuGet package. | |
# | |
# This workflow runs automatically on pushes or pull requests to develop. | |
name: Build, test & pack beta on develop | |
on: | |
push: | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
develop: | |
# With @main we want the latest version. Consider using a version tag to avoid breaking changes. | |
uses: ZEISS-PiWeb/github-actions/.github/workflows/develop.yml@main | |
with: | |
do_pack: true | |
secrets: inherit |