Extract TaskRunner; Fix forced move after pause off in managed game #284
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: Build All | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v2 | |
with: | |
dotnet-version: 7.0.x | |
- name: Restore SIGame dependencies | |
run: dotnet restore SIGame.sln | |
- name: Build SIGame | |
run: dotnet build --no-restore SIGame.sln | |
- name: Restore SIQuester dependencies | |
run: dotnet restore SIQuester.sln | |
- name: Build SIQuester | |
run: dotnet build --no-restore SIQuester.sln | |
- name: Restore SImulator dependencies | |
run: dotnet restore SImulator.sln | |
- name: Build SImulator | |
run: dotnet build --no-restore SImulator.sln |