Fix for older versions that relied on synthesis libs importing all mu… #164
Workflow file for this run
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: Release | |
on: | |
push: | |
branches: [ release ] | |
pull_request: | |
branches: [ release ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.102 | |
- 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 |