Skip to content

CI for PR 7

CI for PR 7 #12

Workflow file for this run

name: Px.Utils CI
run-name: CI for PR ${{ github.event.pull_request.number }}
on: [ pull_request ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
dotnet-version: [ '7.x', '8.x' ]
configuration: [ Debug ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --verbosity normal --no-restore --configuration ${{ matrix.configuration }}
- name: Unit tests
run: dotnet test --verbosity normal