Adding WRC4 and Grid Legends, Inheriting NFS ASLs and Including Vergils Downfall inside DMC #3899
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - 'master' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout LiveSplit | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| repository: LiveSplit/LiveSplit | |
| - name: Checkout LiveSplit.AutoSplitters | |
| uses: actions/checkout@v4 | |
| with: | |
| path: autosplitters_xml | |
| - name: Move Autosplitters XML | |
| run: mv -force autosplitters_xml/LiveSplit.AutoSplitters.xml . | |
| - name: Set up .NET environment | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '8.x' | |
| - name: Run tests | |
| run: > | |
| dotnet test | |
| -v m | |
| -c Release | |
| -p:PlatformTarget=x64 | |
| -p:GenerateDocumentationFile=false | |
| -p:DebugType=None | |
| .\LiveSplit.sln |