CI for PR 53 #267
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |