Should not reuse compilation if from different UI version #344
This file contains 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: Dev | |
on: | |
push: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET 8 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.* | |
- name: Install dependencies | |
run: dotnet restore Synthesis.Bethesda.sln | |
- name: Build | |
run: dotnet build Synthesis.Bethesda.sln -c Release --no-restore | |
- name: Test | |
run: dotnet test Synthesis.Bethesda.sln -c Release --no-build |