Skip to content

Update test.yml

Update test.yml #5

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Test on Multiple Platforms
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
dotnet-version: ['9.0.101']
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
# Setup .NET
- name: Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
# Run tests
- name: Run tests
run: dotnet test ./src/DCEUI.sln --no-restore --verbosity normal