Skip to content

CI for PR 53

CI for PR 53 #267

Workflow file for this run

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