DotRecastNetSim/.github/workflows/dotnet.yml

39 lines
904 B
YAML
Raw Normal View History

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:
- '**.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
- 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