Skip to content

Merge pull request #163 from DevyusCode/vNext #228

Merge pull request #163 from DevyusCode/vNext

Merge pull request #163 from DevyusCode/vNext #228

Workflow file for this run

name: .NET CI
on:
push:
pull_request:
jobs:
build:
strategy:
matrix:
dotnet: ['8.0.x']
os: ['ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.os }}
name: .NET ${{ matrix.dotnet }} on ${{ matrix.os }} sample
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Build PeyrSharp.Core
run: dotnet build PeyrSharp.Core/PeyrSharp.Core.csproj -c Release
- name: Build PeyrSharp.Enums
run: dotnet build PeyrSharp.Enums/PeyrSharp.Enums.csproj -c Release
- name: Build PeyrSharp.Exceptions
run: dotnet build PeyrSharp.Exceptions/PeyrSharp.Exceptions.csproj -c Release
- name: Test PeyrSharp.Core
run: dotnet test PeyrSharp.Core/PeyrSharp.Core.csproj