Skip to content

Desktop: Address programming displays which engines have a certain dc… #870

Desktop: Address programming displays which engines have a certain dc…

Desktop: Address programming displays which engines have a certain dc… #870

Workflow file for this run

name: build and test
on:
push:
env:
DOTNET_VERSION: '8.0.x' # The .NET SDK version to use
jobs:
build-and-test:
name: build-and-test-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- uses: actions/cache@v3
with:
path: ~/.nuget/packages
# Look to see if there is a cache hit for the corresponding requirements file
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore -p:PublishSingleFile=false
- name: Test
run: dotnet test --no-restore --verbosity normal