Skip to content

Test tweaks

Test tweaks #4

Workflow file for this run

name: Release
on:
push:
branches:
- main
- prerelease
- dev
pull_request:
branches: [ release ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.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