Skip to content

Remove OpenGL dependencies from Core project #35

Remove OpenGL dependencies from Core project

Remove OpenGL dependencies from Core project #35

Workflow file for this run

name: 'Test Source'
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
DOTNET_VERSION: '8.0.400'
jobs:
test:
name: test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore ./src/KorpiEngine.sln
- name: Test
run: dotnet test --no-restore --verbosity normal ./src/KorpiEngine.sln