Skip to content

Merge branch 'dev' into release #157

Merge branch 'dev' into release

Merge branch 'dev' into release #157

Workflow file for this run

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