Skip to content

feat: Add Support for MonoGame #202

feat: Add Support for MonoGame

feat: Add Support for MonoGame #202

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
dotnet: ['5.0.x']
configuration: ['Release']
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- name: Setup dotnet env 🏗
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install dependencies 👨🏻‍💻
run: dotnet restore
- name: Run build 🛠
run: dotnet build --nologo --configuration ${{ matrix.configuration }}
- name: Run tests 🧪
run: dotnet test --nologo --configuration ${{ matrix.configuration }}