DotTiled/.github/workflows/tests.yml
2024-08-17 21:50:54 +02:00

22 lines
No EOL
446 B
YAML

on:
pull_request:
branches:
- master
- dev
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal