Skip to content

Initial commit

Initial commit #9

Workflow file for this run

name: Build Status
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1
- name: Install dependencies
run: dotnet restore ./streamdeck-gpu/streamdeck-gpu.sln
- name: Build
run: dotnet build ./streamdeck-gpu/streamdeck-gpu.sln --configuration Release --no-restore