Skip to content

Bump MSTest.TestAdapter from 3.6.0 to 3.6.2 #213

Bump MSTest.TestAdapter from 3.6.0 to 3.6.2

Bump MSTest.TestAdapter from 3.6.0 to 3.6.2 #213

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on:
workflow_dispatch:
push:
branches: [ "main", "release/*" ]
pull_request_target:
types: [assigned, opened, synchronize, reopened]
schedule:
- cron: '0 5 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal -- TestRunParameters.Parameter\(name=\"Login\", value=\"${{ secrets.CR_LOGIN }}\"\) -- TestRunParameters.Parameter\(name=\"Pass\", value=\"${{ secrets.CR_PASS }}\"\)
- name: Publish to Nuget.org
if: startsWith(github.ref, 'refs/heads/release')
run: dotnet nuget push **\*.nupkg -s 'https://api.nuget.org/v3/index.json' -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
- name: Publish to GitHub
if: startsWith(github.ref, 'refs/heads/release')
run: dotnet nuget push **\*.nupkg -k ${{ secrets.GITHUB_TOKEN }} -s https://nuget.pkg.github.com/Vagab0nd/index.json --skip-duplicate