Skip to content

Bump MSTestVersion from 3.3.1 to 3.6.1 #649

Bump MSTestVersion from 3.3.1 to 3.6.1

Bump MSTestVersion from 3.3.1 to 3.6.1 #649

Workflow file for this run

name: BuildTestDeploy
on:
workflow_dispatch:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches:
- 'main'
paths-ignore:
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.runsettings'
- 'LICENSE.txt'
- 'README.md'
pull_request:
branches:
- 'main'
paths-ignore:
- '.editorconfig'
- '.gitattributes'
- '.gitignore'
- '.runsettings'
- 'LICENSE.txt'
- 'README.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
call-build-test:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
fail-fast: true
uses: Vectron/GithubWorkflows/.github/workflows/BuildAndTest.yml@main
with:
os: ${{ matrix.os }}
dotnet_version: |
6.0.x
7.0.x
8.0.x
solution_file: PlcInterface.sln
call-deploy:
needs: call-build-test
permissions:
packages: write
uses: Vectron/GithubWorkflows/.github/workflows/DeployNugetGithub.yml@main
with:
os: ubuntu-latest
dotnet_version: |
6.0.x
7.0.x
8.0.x
solution_file: PlcInterface.sln
secrets:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
call-release:
needs: call-build-test
permissions:
deployments: write
contents: write
uses: Vectron/GithubWorkflows/.github/workflows/CreateRelease.yml@main