2023-04-18 17:02:42 +03:00
|
|
|
# This workflow will build a .NET project
|
|
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
|
|
|
|
|
|
|
|
name: .NET
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
2023-09-18 17:10:20 +03:00
|
|
|
branches: [ main ]
|
|
|
|
paths:
|
2023-10-10 17:12:59 +03:00
|
|
|
- '**/*.cs'
|
|
|
|
- '**/*.csproj'
|
|
|
|
- '**/*.sln'
|
2023-04-18 17:02:42 +03:00
|
|
|
|
|
|
|
jobs:
|
2023-09-18 17:10:20 +03:00
|
|
|
build-and-test:
|
|
|
|
name: build-and-test-${{matrix.os}}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
dotnet-version: [ '7.0.x' ]
|
|
|
|
os: [ windows-latest, ubuntu-latest, macos-latest ]
|
2023-04-18 17:02:42 +03:00
|
|
|
|
|
|
|
steps:
|
2023-09-18 17:10:20 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-10-03 09:42:01 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
|
|
|
|
|
2023-09-18 17:10:20 +03:00
|
|
|
- name: Setup .NET
|
|
|
|
uses: actions/setup-dotnet@v3
|
|
|
|
with:
|
|
|
|
dotnet-version: ${{ matrix.dotnet-version }}
|
2023-09-18 17:11:56 +03:00
|
|
|
|
2023-09-18 17:10:20 +03:00
|
|
|
- name: Restore dependencies
|
|
|
|
run: dotnet restore
|
2023-09-18 17:11:56 +03:00
|
|
|
|
2023-09-18 17:10:20 +03:00
|
|
|
- name: Build
|
2023-09-18 17:17:54 +03:00
|
|
|
run: dotnet build -c Release --no-restore
|
2023-09-18 17:11:56 +03:00
|
|
|
|
2023-09-18 17:10:20 +03:00
|
|
|
- name: Test
|
2023-09-18 17:17:54 +03:00
|
|
|
run: dotnet test -c Release --no-build --verbosity normal
|