Files
sbox-public/.github/workflows/pull_request_checks.yml
2025-12-02 12:50:20 +00:00

30 lines
649 B
YAML

name: Tests
on:
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
tests:
runs-on: [ windows-latest ]
steps:
- name: Full Checkout
uses: actions/checkout@v4
with:
clean: true
fetch-depth: 0
persist-credentials: false
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Build
run: dotnet run --project .\engine\Tools\SboxBuild\SboxBuild.csproj -- build --config Developer
- name: Test
run: dotnet run --project .\engine\Tools\SboxBuild\SboxBuild.csproj -- test