mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-02-05 17:02:49 +02:00
22 lines
446 B
YAML
22 lines
446 B
YAML
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
- dev
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
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
|
||
|
|