Skip to content

Removes default config. Closes #1355 #2156

Removes default config. Closes #1355

Removes default config. Closes #1355 #2156

Workflow file for this run

name: .NET
on:
workflow_dispatch:
push:
branches: [ main ]
paths-ignore: ['samples/**', '**.md', '.vscode/**', '**.svg']
pull_request:
# The branches below must be a subset of the branches above
paths-ignore: ['samples/**', '**.md', '.vscode/**', '**.svg']
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Setup .NET
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
with:
dotnet-version: 10.0.x
- name: Restore workloads
run: dotnet workload restore
- name: Restore dependencies
run: dotnet restore DevProxy.sln --locked-mode
- name: Build
run: dotnet build DevProxy.sln --no-restore
# We really should have tests, putting these steps here for when we have a build process
# - name: Test
# run: dotnet test DevProxy.sln --no-build --verbosity normal --collect:"XPlat Code Coverage"
# - name: Install report generator
# run: dotnet tool install --global dotnet-reportgenerator-globaltool
# - name: Generate coverage report
# run: reportgenerator -reports:**/coverage.cobertura.xml -targetdir:./reports/coverage
# - uses: actions/upload-artifact@v3
# with:
# name: coverage
# path: reports/coverage