Skip to content

Allowing the delegated execution of a pipeline step #3

Allowing the delegated execution of a pipeline step

Allowing the delegated execution of a pipeline step #3

Workflow file for this run

name: PR Build
on:
pull_request:
branches:
- main
jobs:
build:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
dotnet-version: [6.0.x, 7.0.x, 8.0.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore -c Release
- name: Test
run: dotnet test --no-build --verbosity normal -c Release