Skip to content

Bump System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-rc.2.25502.107 #15

Bump System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-rc.2.25502.107

Bump System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-rc.2.25502.107 #15

Workflow file for this run

name: Validate Pull Request
on:
pull_request:
branches: [main]
env:
SOLUTION_FILE: Bicep.LocalDeploy.sln
jobs:
run_tests:
runs-on: ubuntu-latest
name: Run Tests
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
9.0.x
10.0.x
- run: |
dotnet test "${{ env.SOLUTION_FILE }}" \
--configuration Release \
--logger "GitHubActions;summary.includePassedTests=true;summary.includeSkippedTests=true" \
-- \
RunConfiguration.CollectSourceInformation=true
no_warnings:
runs-on: ubuntu-latest
name: No Warnings
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
- run: dotnet build "${{ env.SOLUTION_FILE }}" -c release -p:TreatWarningsAsErrors=true
check_formatting:
runs-on: ubuntu-latest
name: Check Formatting
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
- run: |
dotnet tool restore
dotnet csharpier check .