RunPipeline CLI work to prep git patchers to match their desired sett… #382
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@v4 | |
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 |