forked from mirror/DotRecast
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
# 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:
|
|
branches:
|
|
- 'main'
|
|
- 'pr/**'
|
|
paths:
|
|
- '**.cs'
|
|
- '**.csproj'
|
|
- '**.sln'
|
|
- '**.yml'
|
|
pull_request:
|
|
branches:
|
|
- 'pr/**'
|
|
paths:
|
|
- '**.cs'
|
|
- '**.csproj'
|
|
- '**.sln'
|
|
- '**.yml'
|
|
|
|
jobs:
|
|
build-and-test:
|
|
name: test-${{matrix.os}}-${{matrix.dotnet-version}}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
dotnet-version: [ '6.x', '7.x', '8.x' ]
|
|
os: [ windows-latest, ubuntu-latest, macos-latest ]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer
|
|
|
|
- name: Setup .NET
|
|
uses: actions/setup-dotnet@v3
|
|
with:
|
|
dotnet-version: '8.x'
|
|
|
|
- name: Restore dependencies
|
|
run: dotnet restore
|
|
|
|
- name: Build
|
|
run: dotnet build -c Release --no-restore
|
|
|
|
- name: Test
|
|
run: dotnet test -c Release --no-build --verbosity normal
|