Skip to content

Switch to sending labels instead of indices when using answer options… #225

Switch to sending labels instead of indices when using answer options…

Switch to sending labels instead of indices when using answer options… #225

Workflow file for this run

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