Test specify SDK version #1055
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
name: 'build-test' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
jobs: | |
lint_unittest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
npm install | |
- run: | | |
npm run all | |
e2e_test: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ ubuntu-latest, windows-latest, macos-latest ] | |
dotnet-version: [ '7.0' ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- run: dotnet --version | |
- uses: ./ | |
with: | |
solutionPath: TestSolution/TestSolution.sln | |
failOnIssue: '0' | |
minimumReportSeverity: 'WARNING' | |
# Reproduce second time execution on self-hosted runner | |
- uses: ./ | |
with: | |
solutionPath: TestSolution/TestSolution.sln | |
failOnIssue: '0' |