Skip to content

Bump MSTest.TestAdapter from 3.1.1 to 3.3.1 #24

Bump MSTest.TestAdapter from 3.1.1 to 3.3.1

Bump MSTest.TestAdapter from 3.1.1 to 3.3.1 #24

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: On Pull Request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
uses: ./.github/workflows/build.yaml
strategy:
fail-fast: true
matrix:
build-os:
- ubuntu-latest
- macos-latest
- windows-latest
build-configuration:
- Debug
- Release
secrets:
github-token: ${{secrets.GITHUB_TOKEN}}
with:
build-os: ${{matrix.build-os}}
build-configuration: ${{matrix.build-configuration}}
test:
name: Test
uses: ./.github/workflows/test.yaml
strategy:
fail-fast: true
matrix:
build-os:
- ubuntu-latest
- macos-latest
- windows-latest
secrets:
github-token: ${{secrets.GITHUB_TOKEN}}
reportgenerator-license: ${{secrets.REPORTGENERATOR_LICENSE}}
with:
build-os: ${{matrix.build-os}}