Skip to content

Show mod diff status and file versions in the join data window #716

Show mod diff status and file versions in the join data window

Show mod diff status and file versions in the join data window #716

Workflow file for this run

# Based on workflow from https://github.com/krafs/LevelUp
name: Validate Pull Request
env:
SLN_PATH: Source/
on:
pull_request
jobs:
builds:
name: Builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.x
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
- name: Restore dependencies
run: dotnet restore ${{ env.SLN_PATH }}
- name: Build debug
run: dotnet build ${{ env.SLN_PATH }} --no-restore
- name: Build release
run: dotnet build ${{ env.SLN_PATH }} --configuration Release --no-restore
- name: Run tests
run: dotnet test ${{ env.SLN_PATH }} --no-restore