Skip to content

Remove OpenGL dependencies from Core project #37

Remove OpenGL dependencies from Core project

Remove OpenGL dependencies from Core project #37

Workflow file for this run

name: 'Build Source'
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
DOTNET_VERSION: '8.0.400'
jobs:
build:
name: build-${{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: Build
run: dotnet build --configuration Production --no-restore ./src/KorpiEngine.sln