Skip to content

fix: XML docs, IWebhookPaymentProvider, DI fix — CS1591 + testy #54

fix: XML docs, IWebhookPaymentProvider, DI fix — CS1591 + testy

fix: XML docs, IWebhookPaymentProvider, DI fix — CS1591 + testy #54

Workflow file for this run

name: Build & Test PR
on:
pull_request:
branches: [ master ]
env:
NETCORE_VERSION: '10.0.x'
jobs:
build:
name: Build and test
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- name: Setting up .NET Core SDK ${{ env.NETCORE_VERSION }}...
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.NETCORE_VERSION }}
- name: Restore Workloads
run: dotnet workload restore
- name: Restoring Packages
run: dotnet restore
- name: Building Solution
run: dotnet build TailoredApps.Shared.sln --configuration Release --no-restore
- name: Testing
run: dotnet test --no-build --configuration Release --no-restore --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat="opencover"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}